/* ============================================
           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;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           BOTÓN FLOTANTE "¿HABLAMOS?" - PATRÓN AMI
        ============================================ */
        

        

        /* ============================================
           SECCIÓN REMIT
        ============================================ */
        .remit-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 20px;
            background: var(--indigo-dye);
        }

        .remit-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .remit-title {
            font-family: var(--font-titles);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
            color: var(--aquamarine) !important;
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.3;
        }

        .remit-title span {
            color: var(--aquamarine) !important;
        }

        .remit-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            border-radius: 40px 0 40px 0; /* Patrón AMI */
            box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
            min-height: 500px;
        }

        .remit-image {
            background: linear-gradient(135deg, #e8e4f0 0%, #d4d0e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border-radius: 40px 0 0 0;
            overflow: hidden;
            position: relative;
        }

        .remit-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

        .remit-text {
            background: var(--aquamarine);
            padding: 60px 55px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 0 40px 0;
        }

        .remit-text p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--indigo-dye-dark) !important;
            line-height: 1.75;
            margin-bottom: 25px;
        }

        .remit-text p:last-child {
            margin-bottom: 0;
        }

        .remit-text strong {
            font-weight: 700;
            color: var(--indigo-dye-dark) !important;
        }

        .remit-text a {
            color: var(--indigo-dye-dark) !important;
            font-weight: 600;
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .remit-text a:hover {
            opacity: 0.7;
        }

        /* ============================================
           RESPONSIVE - MÓVIL ANCHO (88%)
        ============================================ */
        @media (max-width: 900px) {
            .remit-section {
                padding: 60px 4%;
            }

            .remit-title {
                font-size: clamp(24px, 5vw, 36px);
                margin-bottom: 45px;
            }

            .remit-content {
                grid-template-columns: 1fr;
                border-radius: 30px 0 30px 0;
                width: 88%;
                margin: 0 auto;
                min-height: auto;
            }

            .remit-image {
                border-radius: 30px 0 0 0;
                padding: 0;
                min-height: 350px;
                position: relative;
            }

            .remit-image img {
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .remit-text {
                padding: 45px 6%;
                border-radius: 0 0 30px 0;
            }

            .remit-text p {
                font-size: 15px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            

            .remit-section {
                padding: 50px 4%;
            }

            .remit-title {
                font-size: 22px;
                margin-bottom: 35px;
            }

            .remit-content {
                border-radius: 25px 0 25px 0;
            }

            .remit-image {
                border-radius: 25px 0 0 0;
                min-height: 300px;
            }

            .remit-text {
                padding: 35px 5%;
                border-radius: 0 0 25px 0;
            }

            .remit-text p {
                font-size: 14px;
                line-height: 1.65;
            }
        }
