:root {
            --primary-color: #2c5a63;       /* Azul marino profundo de alta gama */
            --secondary-color: #1a3a5f;     /* Azul secundario regio */
            --accent-color: #faab00;        /* Dorado metálico elegante */
            --accent-hover: #AA882C;        /* Dorado oscuro para estados activos */
            --bg-light: #F8F9FA;            /* Gris premium muy suave */
            --text-dark: #222222;           /* Negro suave tipográfico */
            --text-muted: #5A6573;          /* Gris refinado para descripciones */
            --white: #FFFFFF;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
            font-size: 16px;
            line-height: 2em;
            color: var(--text-dark);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* --- SISTEMA DE ANIMACIONES AL SCROLL --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .reveal.reveal-left {
            transform: translateX(-50px);
        }

        .reveal.reveal-right {
            transform: translateX(50px);
        }

        .reveal.active {
            opacity: 1;
            transform: translate(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Header */
        header {
            background-color: var(--white);
            padding: 25px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

        .logo img {
            max-width: 300px;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }
        
        .logo img:hover {
            transform: scale(1.02);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(to right, rgba(13, 35, 58, 0.85), rgba(13, 35, 58, 0.00)), url('images/BackHero.jpg') no-repeat center center/cover;
            color: var(--white);
            padding-bottom: 0px;
            display: flex;
            align-items: center;
        }

        .hero-layout {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-bottom: 0px;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            line-height: 1.1;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-top: 0px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
        }

        /* Formulario */
        .form-container {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            width: 100%;
            border-top: 5px solid var(--accent-color);
        }

        .form-container h3 {
            color: var(--primary-color);
            font-size: 1.25rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .form-group {
            margin-bottom: 20px;
            width: 100%;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #E1E4E8;
            border-radius: 4px;
            font-size: 0.95rem;
            font-family: inherit;
            background-color: #FAFAFA;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
            outline: none;
        }

        select.form-control {
            width: 100% !important;
            height: 45px;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 80px;
        }

        /* Contenedor de dos columnas por fila para Desktop */
        .form-row-2col {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .btn-submit {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 15px;
            font-family: inherit;
        }

        .btn-submit:hover {
            background-color: var(--accent-hover);
            box-shadow: 0 5px 15px rgba(214, 175, 87, 0.4);
            transform: translateY(-2px);
        }

        /* Secciones de Contenido */
        .content-section {
            padding-top: 50px;
            padding-right: 0;
            padding-left: 0;
            padding-bottom: 50px;
        }

        .bg-gray {
            background-color: var(--bg-light);
        }

        .section-title {
            text-align: center;
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 15px auto 0 auto;
        }

        .two-column-grid {
            display: flex;
            flex-direction: column;
            gap: 50px;
            align-items: center;
        }

        .text-col h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.1;
        }

        .accent-mark {
            color: var(--accent-color);
            margin-right: 4px;
        }
		
        .primary-color {
            color: var(--primary-color);
            margin-right: 4px;
        }

        .text-col h3 {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-top: 25px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .text-col p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .image-col {
            position: relative;
            width: 100%;
        }

        .image-col img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: transform 0.5s ease;
        }

        /* Listas */
        .bullet-list {
            list-style: none;
            margin-top: 20px;
        }

        .bullet-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .bullet-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Video */
        .video-wrapper {
            width: 100%;
            max-width: 850px;
            margin: 0 auto 35px auto;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-radius: 8px;
            overflow: hidden;
        }

        .video-wrapper video {
            width: 100%;
            display: block;
        }

        .ai-transcript {
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 30px;
            border-left: 4px solid var(--accent-color);
            font-size: 0.95rem;
            color: var(--text-muted);
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            border-radius: 0 8px 8px 0;
        }

        /* FAQs */
        .faq-wrapper {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-card {
            background-color: var(--white);
            padding: 30px;
            border: 1px solid #EAEAEA;
            border-radius: 8px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .faq-card h3 {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-card p {
            font-size: 1rem;
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 4px solid var(--accent-color);
        }

        footer h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-color);
        }

        .footer-socials {
            list-style: none;
            margin-bottom: 35px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-socials a {
            color: rgba(255, 255, 255, 0.7);
            background-color: rgba(255, 255, 255, 0.05);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transición más fluida */
            border: 1px solid rgba(255,255,255,0.1);
        }

        .footer-socials a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            transition: transform 0.3s ease; /* Permite animar el SVG interno si fuese necesario */
        }

        /* --- EFECTO ROLL OVER (HOVER) EN REDES SOCIALES --- */
        .footer-socials a:hover {
            color: var(--white);
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-4px); /* Pequeña elevación premium */
            box-shadow: 0 6px 15px rgba(250, 171, 0, 0.3); /* Resplandor dorado tenue */
        }

        footer p {
            color: rgba(255,255,255,0.5);
        }

        footer p a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

        /* --- RESPONSIVE / MEDIA QUERIES --- */
        @media (max-width: 767px) {
			
			/* NUEVO: Centra el contenedor y la imagen del logo en celulares */
            .logo {
                display: flex;
                justify-content: center;
                width: 100%;
            }
            .logo img {
                margin: 0 auto;
            }
			
            .hero-section {
                background: linear-gradient(to bottom, rgba(13, 35, 58, 0.90), rgba(13, 35, 58, 0.15)), url('images/BackHero.jpg') no-repeat center center/cover;
                padding-top: 30px;
                padding-bottom: 30px;
            }
            /* Margen de 15px arriba y abajo para el bloque de texto en celulares */
            .hero-text {
                margin-top: 15px;
                margin-bottom: 15px;
            }
        }

        @media (min-width: 768px) {
            .hero-layout {
                flex-direction: row;
            }
            .hero-text {
                flex: 1.1;
                padding-right: 20px;
            }
            .hero-text h1 {
    			font-size: 2.8rem;
            }
            .hero-form-box {
                width: 620px;
                flex-shrink: 0;
            }
            .two-column-grid {
                flex-direction: row;
                gap: 80px;
            }
            .two-column-grid.reverse {
                flex-direction: row-reverse;
            }
            .text-col, .image-col {
                flex: 1;
                width: 50%;
            }
            .text-col h2 {
                font-size: 2.2rem;
                padding-bottom: 20px;
            }

            /* Activación de dos columnas para campos específicos en escritorio */
            .form-row-2col {
                flex-direction: row;
                gap: 15px;
            }
        }