/* ============================================
           VARIABLES CSS - Colores Corporativos AMI
        ============================================ */
        :root {
            --aquamarine: #73fbd3;
            --indigo-dye: #153b50;
            --indigo-dye-dark: #0d2a3a;
            --razzle-rose: #ff3cc7;
            --canary: #FFE900;
            --indigo: #63038c;
            --white: #ffffff;
            --gray-light: #8db5b8;
            
            --font-titles: 'Krub', sans-serif;
            --font-body: 'Nunito', sans-serif;
        }

        /* ============================================
           RESET BÁSICO
        ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ============================================
           WRAPPER PRINCIPAL - FONDO AZUL OSCURO
        ============================================ */
        .ami-sobre-nosotros-wrapper {
            background: var(--indigo-dye) !important;
            min-height: 100vh;
            width: 100%;
            padding: 0;
            margin: 0;
            font-family: var(--font-body);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .ami-sobre-nosotros-wrapper img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           BOTÓN FLOTANTE WHATSAPP - CORPORATIVO
        ============================================ */
        

        

        

        

        /* ============================================
           HEADER SUPERIOR
        ============================================ */
        .ami-page-header {
            background: transparent !important;
            padding: 50px 20px 40px;
            text-align: center;
        }

        .ami-page-header h1 {
            font-family: var(--font-titles);
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 10px;
        }

        .ami-page-header p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--gray-light) !important;
            font-weight: 400;
        }

        /* ============================================
           SECCIÓN HERO - PATRÓN AMI
        ============================================ */
        .ami-hero-wrapper {
            padding: 20px 40px 50px;
            background: transparent !important;
        }

        .ami-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 40px 0 40px 0;
        }

        .ami-hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 40px 0 0 0;
        }

        .ami-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 350px;
        }

        .ami-hero-content {
            background: var(--aquamarine) !important;
            padding: 50px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 0 40px 0;
        }

        .ami-hero-content h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--indigo-dye-dark) !important;
            line-height: 1.25;
            margin-bottom: 22px;
        }

        .ami-hero-content p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--indigo-dye-dark) !important;
            line-height: 1.7;
        }

        /* ============================================
           SECCIÓN CON BORDE - PATRÓN AMI
        ============================================ */
        .ami-about-section {
            background: transparent !important;
            padding: 30px 40px 60px;
        }

        .ami-about-box {
            max-width: 1200px;
            margin: 0 auto;
            border: 3px solid var(--aquamarine) !important;
            border-radius: 35px 0 35px 0;
            padding: 45px 50px 55px;
            background: rgba(13, 42, 58, 0.5) !important;
        }

        .ami-about-box h2 {
            font-family: var(--font-titles);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            line-height: 1.35;
            margin-bottom: 20px;
        }

        .ami-about-box > p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--white) !important;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        /* ============================================
           VALORES - TÍTULO
        ============================================ */
        .ami-values-title {
            font-family: var(--font-titles);
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            margin-bottom: 22px;
        }

        /* ============================================
           VALORES - BARRAS SÓLIDAS AQUAMARINE
        ============================================ */
        .ami-values-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .ami-value-item {
            background: var(--aquamarine) !important;
            padding: 18px 28px;
            border-radius: 20px 0 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .ami-value-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(115, 251, 211, 0.3);
        }

        .ami-value-item p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--indigo-dye-dark) !important;
            line-height: 1.5;
            margin: 0;
            flex: 1;
        }

        .ami-value-item strong {
            font-weight: 700;
            color: var(--indigo-dye-dark) !important;
        }

        /* Check circular con borde OSCURO */
        .ami-check-icon {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border: 2.5px solid var(--indigo-dye-dark) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent !important;
        }

        .ami-check-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--indigo-dye-dark) !important;
            stroke-width: 3;
            fill: none;
        }

        /* ============================================
           SECCIÓN CIERRE - FONDO AQUAMARINE SÓLIDO
           ✅ SIN DEGRADADO - LEGIBLE Y LIMPIO
        ============================================ */
        .ami-footer-section {
            background: var(--aquamarine) !important;
            padding: 80px 20px 80px;
            text-align: center;
        }

        .ami-footer-section h2 {
            font-family: var(--font-titles);
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 700;
            color: var(--indigo-dye-dark) !important;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.35;
        }

        /* ============================================
           RESPONSIVE - MÓVIL ANCHO (88%)
        ============================================ */
        @media (max-width: 1024px) {
            .ami-hero-wrapper,
            .ami-about-section {
                padding-left: 25px;
                padding-right: 25px;
            }

            .ami-about-box {
                padding: 40px 35px 45px;
            }

            .ami-hero {
                border-radius: 35px 0 35px 0;
            }

            .ami-hero-image {
                border-radius: 35px 0 0 0;
            }

            .ami-hero-content {
                border-radius: 0 0 35px 0;
            }
        }

        @media (max-width: 900px) {
            .ami-page-header {
                padding: 40px 6% 30px;
            }

            .ami-hero-wrapper {
                padding: 15px 6% 40px;
            }

            .ami-hero {
                grid-template-columns: 1fr;
                max-width: 100%;
                border-radius: 30px 0 30px 0;
            }

            .ami-hero-image {
                border-radius: 30px 0 0 0;
            }

            .ami-hero-image img {
                min-height: 220px;
                max-height: 280px;
            }

            .ami-hero-content {
                padding: 32px 6%;
                border-radius: 0 0 30px 0;
            }

            .ami-about-section {
                padding: 25px 6% 50px;
            }

            .ami-about-box {
                width: 100%;
                padding: 32px 6% 40px;
                border-width: 2px;
                border-radius: 30px 0 30px 0;
            }

            .ami-value-item {
                padding: 14px 20px;
                gap: 15px;
                border-radius: 18px 0 18px 0;
            }

            .ami-value-item p {
                font-size: 14px;
            }

            .ami-check-icon {
                width: 32px;
                height: 32px;
            }

            .ami-check-icon svg {
                width: 17px;
                height: 17px;
            }

            .ami-footer-section {
                padding: 60px 6% 60px;
            }
        }

        @media (max-width: 768px) {
            

            

            
        }

        @media (max-width: 480px) {
            

            .ami-page-header h1 {
                font-size: 24px;
            }

            .ami-page-header p {
                font-size: 14px;
            }

            .ami-hero {
                border-radius: 25px 0 25px 0;
            }

            .ami-hero-image {
                border-radius: 25px 0 0 0;
            }

            .ami-hero-content {
                padding: 28px 5%;
                border-radius: 0 0 25px 0;
            }

            .ami-hero-content h2 {
                font-size: 22px;
            }

            .ami-hero-content p {
                font-size: 13px;
            }

            .ami-about-box {
                padding: 26px 5% 34px;
                border-radius: 25px 0 25px 0;
            }

            .ami-about-box h2 {
                font-size: 20px;
            }

            .ami-about-box > p {
                font-size: 14px;
            }

            .ami-values-title {
                font-size: 18px;
            }

            .ami-value-item {
                padding: 12px 16px;
                border-radius: 15px 0 15px 0;
            }

            .ami-value-item p {
                font-size: 13px;
            }

            .ami-check-icon {
                width: 28px;
                height: 28px;
            }

            .ami-check-icon svg {
                width: 15px;
                height: 15px;
            }

            .ami-footer-section {
                padding: 50px 6% 50px;
            }

            .ami-footer-section h2 {
                font-size: 22px;
            }
        }
