/* ============================================
           VARIABLES CSS - Colores Corporativos AMI
        ============================================ */
        :root {
            --aquamarine: #73fbd3;
            --indigo-dye: #153b50;
            --indigo-dye-dark: #0d2a3a;
            --razzle-rose: #ff3cc7;
            --canary: #FFE900;
            --indigo: #63038c;
            --white: #ffffff;
            
            --font-titles: 'Krub', sans-serif;
            --font-body: 'Nunito', sans-serif;
        }

        /* ============================================
           RESET Y ESTILOS BASE
        ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--indigo-dye);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           BOTÓN FLOTANTE WHATSAPP - CORPORATIVO
        ============================================ */
        

        

        

        

        /* ============================================
           HEADER DE TARIFA
        ============================================ */
        .tariff-header {
            background: var(--indigo-dye);
            padding: 40px 20px 20px;
            text-align: center;
        }

        .tariff-header h1 {
            font-family: var(--font-titles);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--canary) !important;
            margin-bottom: 8px;
        }

        .tariff-header p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--aquamarine) !important;
        }

        /* ============================================
           SECCIÓN HERO CON IMAGEN
        ============================================ */
        .hero-wrapper {
            padding: 25px 20px;
            background: var(--indigo-dye);
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 40px 0 40px 0;
            min-height: 350px;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 40px 0 0 0;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            min-height: 350px;
        }

        .hero-content {
            background: var(--aquamarine);
            padding: 45px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 0 40px 0;
        }

        .hero-content h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            color: var(--indigo-dye) !important;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .hero-content p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--indigo-dye) !important;
            line-height: 1.65;
            margin-bottom: 12px;
        }

        .hero-content p:last-child {
            margin-bottom: 0;
        }

        /* ============================================
           SECCIÓN CÓMO FUNCIONA - ÍCONOS CORPORATIVOS
        ============================================ */
        .how-it-works {
            background: var(--indigo-dye);
            padding: 70px 20px;
            text-align: center;
        }

        .how-it-works h2 {
            font-family: var(--font-titles);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 50px;
            line-height: 1.3;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            row-gap: 80px;
            max-width: 1100px;
            margin: 0 auto;
            width: 94%;
            padding-top: 55px;
        }

        .feature-card {
            background: var(--aquamarine);
            text-align: center;
            padding: 55px 35px 32px;
            border-radius: 30px 0 30px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(115, 251, 211, 0.3);
        }

        .feature-icon {
            position: absolute;
            top: -65px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            background: transparent;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .feature-card h3 {
            font-family: var(--font-titles);
            font-size: 16px;
            font-weight: 700;
            color: var(--indigo-dye) !important;
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        /* ============================================
           LÍNEA DIVISORIA - AZUL OSCURO CORPORATIVO
        ============================================ */
        .feature-divider {
            width: 35px;
            height: 3px;
            background: var(--indigo-dye-dark) !important;
            margin: 0 auto 15px;
        }

        .feature-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--indigo-dye) !important;
            line-height: 1.65;
        }

        /* ============================================
           SECCIÓN PRECIO DE LA ENERGÍA
        ============================================ */
        .energy-price-section {
            background: var(--indigo-dye);
            padding: 70px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-family: var(--font-titles);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 18px;
        }

        .section-header p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--aquamarine) !important;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.65;
        }

        .price-cards-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            position: relative;
        }

        .price-card {
            background: var(--aquamarine);
            padding: 60px 40px 40px;
            border-radius: 30px 0 30px 0;
            position: relative;
            flex: 1;
            max-width: 450px;
        }

        .price-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--razzle-rose);
            color: var(--white) !important;
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: 13px;
            padding: 10px 28px;
            border-radius: 15px 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .price-item {
            margin-bottom: 28px;
        }

        .price-item:last-child {
            margin-bottom: 0;
        }

        .price-label {
            font-family: var(--font-titles);
            font-size: 16px;
            font-weight: 700;
            color: var(--indigo-dye) !important;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .price-value {
            font-family: var(--font-titles);
            font-size: 24px;
            font-weight: 700;
            color: var(--indigo-dye) !important;
            margin-bottom: 2px;
        }

        .price-taxes {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--indigo-dye) !important;
            opacity: 0.85;
        }

        .arrow-separator {
            width: 60px;
            height: 60px;
            background: var(--razzle-rose);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .arrow-separator::after {
            content: "→";
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
        }

        /* ============================================
           SECCIÓN PRECIO DE LA POTENCIA
        ============================================ */
        .power-price-section {
            background: var(--indigo-dye);
            padding: 70px 20px;
        }

        .power-card {
            background: var(--aquamarine);
            padding: 45px 50px;
            border-radius: 30px 0 30px 0;
            max-width: 650px;
            margin: 0 auto;
        }

        .power-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .power-item:last-child {
            margin-bottom: 0;
        }

        .power-left {
            flex: 1;
        }

        .power-right {
            text-align: right;
        }

        /* ============================================
           SECCIÓN PROPUESTA AMI
        ============================================ */
        .proposal-section {
            background: var(--indigo-dye);
            padding: 70px 20px 100px;
        }

        .proposal-container {
            max-width: 1000px;
            margin: 0 auto;
            border: 3px solid var(--aquamarine);
            border-radius: 40px 0 40px 0;
            padding: 45px 50px 70px;
            text-align: center;
            position: relative;
        }

        .proposal-container h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 25px;
        }

        .proposal-container p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--aquamarine) !important;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .btn-cta-wrapper {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .btn-cta {
            display: inline-block;
            background: var(--canary);
            color: var(--indigo-dye) !important;
            font-family: var(--font-titles);
            font-weight: 700;
            font-size: 14px;
            padding: 16px 45px;
            border-radius: 20px 0 20px 0;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-cta:hover {
            background: #e6d200;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 233, 0, 0.4);
        }

        /* ============================================
           RESPONSIVE - MÓVIL ANCHO (88%)
        ============================================ */
        @media (max-width: 1100px) {
            .features-grid {
                gap: 22px;
                row-gap: 75px;
            }
        }

        @media (max-width: 900px) {
            .tariff-header {
                padding: 35px 6% 18px;
            }

            .hero-wrapper {
                padding: 20px 6%;
            }

            .hero {
                grid-template-columns: 1fr;
                border-radius: 30px 0 30px 0;
                min-height: auto;
            }

            .hero-image {
                border-radius: 30px 0 0 0;
            }

            .hero-image img {
                min-height: 280px;
            }

            .hero-content {
                padding: 40px 6% 40px;
                border-radius: 0 0 30px 0;
            }

            .how-it-works {
                padding: 55px 6%;
            }

            .how-it-works h2 {
                margin-bottom: 70px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                row-gap: 60px;
                width: 88%;
                padding-top: 60px;
            }

            .feature-card {
                border-radius: 25px 0 25px 0;
                padding: 55px 6% 32px;
            }

            .feature-icon {
                width: 85px;
                height: 85px;
                top: -60px;
            }

            .energy-price-section {
                padding: 60px 6% 55px;
            }

            .section-header {
                margin-bottom: 70px;
            }

            .price-cards-wrapper {
                flex-direction: column;
                gap: 60px;
                width: 88%;
                margin: 0 auto;
            }

            .price-card {
                max-width: 100%;
                padding: 55px 6% 35px;
                border-radius: 25px 0 25px 0;
            }

            .arrow-separator {
                transform: rotate(90deg);
            }

            .power-price-section {
                padding: 55px 6% 60px;
            }

            .power-card {
                padding: 40px 6%;
                border-radius: 25px 0 25px 0;
                width: 88%;
            }

            .proposal-section {
                padding: 55px 6% 80px;
            }

            .proposal-container {
                border-radius: 30px 0 30px 0;
                padding: 40px 6% 60px;
                width: 88%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            

            

            
        }

        @media (max-width: 480px) {
            

            .tariff-header h1 {
                font-size: 28px;
            }

            .hero-content h2 {
                font-size: 24px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .how-it-works h2 {
                font-size: 22px;
                margin-bottom: 65px;
            }

            .features-grid {
                gap: 55px;
                row-gap: 55px;
            }

            .feature-icon {
                width: 75px;
                height: 75px;
                top: -55px;
            }

            .feature-card {
                padding: 50px 5% 28px;
            }

            .section-header h2 {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .section-header p {
                font-size: 14px;
            }

            .price-badge {
                font-size: 11px;
                padding: 8px 20px;
                top: -12px;
            }

            .price-card {
                padding: 50px 5% 32px;
            }

            .price-label {
                font-size: 14px;
            }

            .price-value {
                font-size: 20px;
            }

            .price-taxes {
                font-size: 12px;
            }

            .arrow-separator {
                width: 50px;
                height: 50px;
            }

            .arrow-separator::after {
                font-size: 28px;
            }

            .power-card {
                padding: 35px 5%;
            }

            .power-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                margin-bottom: 25px;
            }

            .power-right {
                text-align: left;
            }

            .proposal-container h2 {
                font-size: 24px;
            }

            .proposal-container p {
                font-size: 14px;
            }

            .btn-cta {
                font-size: 13px;
                padding: 14px 35px;
            }
        }
