/* Geometric & Angled Design System */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f8fafc;
    --accent: #059669;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --font-heading: 'Syncopate', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
}

body {
    background-color: var(--secondary) !important;
    color: var(--text-main) !important;
    font-family: var(--font-body) !important;
    overflow-x: hidden;
    margin: 0;
}

/* Section Angles */
.angled-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    margin-bottom: 60px;
}

.angled-section.primary-bg {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
}

/* Text contrast in Primary segments */
.primary-bg,
.primary-bg p,
.primary-bg span,
.primary-bg li,
.primary-bg .elementor-icon-list-text,
.primary-bg h1,
.primary-bg h2,
.primary-bg h3,
.primary-bg .elementor-heading-title {
    color: var(--white) !important;
}

/* Text contrast in White segments */
.angled-section:not(.primary-bg),
.angled-section:not(.primary-bg) p,
.angled-section:not(.primary-bg) span,
.angled-section:not(.primary-bg) li,
.angled-section:not(.primary-bg) .elementor-icon-list-text,
.angled-section:not(.primary-bg) h1,
.angled-section:not(.primary-bg) h2,
.angled-section:not(.primary-bg) h3,
.angled-section:not(.primary-bg) .elementor-heading-title {
    color: var(--text-main) !important;
}

.primary-bg .elementor-button,
.primary-bg .elementor-button * {
    background: var(--white) !important;
    color: var(--primary) !important;
}

.primary-bg .elementor-button:hover,
.primary-bg .elementor-button:hover * {
    background: var(--secondary) !important;
    color: var(--primary-dark) !important;
}

.elementor-button * {
    color: inherit !important;
}

.angled-section::before,
.angled-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
}

.angled-top::before {
    top: -75px;
    background: inherit;
    clip-path: polygon(0 75px, 100% 0, 100% 100%, 0 100%);
}

.angled-bottom::after {
    bottom: -75px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 75px, 0 100%);
}

/* Typography Utility Classes */
.font-heading {
    font-family: var(--font-heading) !important;
}

.font-body {
    font-family: var(--font-body) !important;
}

h1,
h2,
h3,
.elementor-heading-title {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

.primary-bg h1,
.primary-bg h2,
.primary-bg h3 {
    color: var(--white) !important;
}

/* Content Layout Skew (Subtle) */
.skew-card {
    transition: transform 0.3s ease;
}

.skew-card:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.02);
}

/* Button Overrides */
.elementor-button {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 18px 35px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4) !important;
}

/* Pricing Refinements - Extreme Specificity */
#oferta .price-highlight,
.elementor-3461 #oferta .price-highlight {
    font-size: 80px !important;
    font-weight: 900 !important;
    color: #00b050 !important;
    font-family: var(--font-heading) !important;
    margin: 20px 0 !important;
    text-shadow: 0 4px 6px rgba(0, 176, 80, 0.2) !important;
    display: block !important;
    line-height: 1 !important;
}

#oferta .text-strike,
.elementor-3461 #oferta .text-strike {
    color: #FF3B30 !important;
    text-decoration: line-through !important;
    font-weight: 700 !important;
}

#oferta .text-dark-bold,
.elementor-3461 #oferta .text-dark-bold {
    color: #1e293b !important;
    font-weight: 800 !important;
}

/* Green Button Utility */
.btn-green,
.btn-green * {
    background: #00b050 !important;
    /* Slightly more vibrant green */
    color: var(--white) !important;
    border-radius: 50px !important;
    /* Pill shaped */
    box-shadow: 0 15px 30px rgba(0, 176, 80, 0.4) !important;
    border: none !important;
}

.btn-green:hover,
.btn-green:hover * {
    background: #008f41 !important;
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(0, 176, 80, 0.5) !important;
}

/* Grid Background Pattern */
.geometric-grid {
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Icon Styling */
.elementor-icon svg {
    fill: var(--primary) !important;
}

.primary-bg .elementor-icon svg {
    fill: var(--white) !important;
}

/* Carousel and Cards Decoration */
.elementor-widget-container {
    position: relative;
    z-index: 2;
}

.glass-accent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}