        /* 
         * ==========================================
         * CONFIGURACIÓN DE ESTILOS (CSS VARIABLES)
         * Modifique estos valores para cambiar el tema global
         * ==========================================
         */
        :root {
            /* Paleta de Colores */
            --color-primary: #FFFFFF;
            /* Fondo principal */
            --color-secondary: #333333;
            /* Texto secundario / Gris medio */
            --color-text-dark: #333333;
            /* Texto principal para contraste sobre blanco */
            --color-accent: #e9d902;
            /* Amarillo dorado (Acentos) */
            --color-bg-light: #F9F9F9;
            /* Fondos alternativos suaves */

            /* Tipografía */
            --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

            /* Espaciado y Dimensiones */
            --container-width: 1200px;
            --header-height: 80px;
            --border-radius: 12px;
            --transition-speed: 0.3s;
        }

        /* Reset Básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-primary);
            color: var(--color-text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-speed);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        /* Utilidades */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--color-text-dark);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--color-accent);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-speed);
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: var(--color-accent);
            color: #000;
            /* Texto negro para contraste con amarillo */
        }

        .btn-primary:hover {
            background-color: #e9e100;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        .btn-outline {
            border-color: var(--color-secondary);
            color: var(--color-secondary);
        }

        .btn-outline:hover {
            background-color: var(--color-secondary);
            color: white;
        }

        /* ==========================================
           HEADER & NAV
           ========================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(80, 78, 78, 0.315);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-right: 200px;
        }
        .logo:hover{
            transform: translateY(-2px);            
        }

        .logo-text{
            display:inline-block;
            transition: all var(--transition-speed);
        }
        .logo-text:hover{
            transform: translateY(-2px);            
        }

        .logo-text span {
            color: var(--color-accent);
             -webkit-text-stroke: 2px black;
             paint-order: stroke fill;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 700;
            color: var(--color-secondary);
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-text-dark);
            
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-accent);
            transition: width var(--transition-speed);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ==========================================
           HERO SECTION (INICIO)
           ========================================== */
        #home {
            padding-top: var(--header-height);
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #ffffff 50%, #f9f9f9 50%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--color-text-dark);
        }

        .hero-text p {
            font-size: 1.1rem;
            color: var(--color-secondary);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-images {
    display: flex;
    flex-direction: column;
    gap: 60px;
    height: 95%;
}

.hero-image-container {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 5px 10px 0px var(--color-accent);
}

.hero-image-container img {
    width: 100%;
    height: 100%;a
    object-fit: cover;
    display: block;
}
.hero-image-container:first-child {
    transform: translateX(-1px);
    flex: 1.1; /* más grande */
}

.hero-image-container:last-child {
    transform: translateX(70px);
    flex: 1.0; /* más pequeña */
}

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgb(245, 242, 242);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-bottom: 3px solid var(--color-accent);
        }

        .feature-large {
            grid-row: span 2;
        }

       @media (max-width:768px){

    .hero-images{

        position:relative;

        display:flex;
        justify-content:center;
        align-items:center;

        min-height:450px;

        margin-top:40px;
    }

    .hero-image-container{

        position:absolute;

        width:75%;

        border-radius:20px;

        overflow:hidden;

        box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .hero-image-container:first-child{

        left:0;

        top:0;

        z-index:1;

        transform:rotate(-5deg);
    }

    .hero-image-container:last-child{

        right:0;

        bottom:0;

        z-index:2;

        transform:rotate(5deg);
    }

    .hero-image-container img{

        width:100%;
        height:300px;
        object-fit:cover;
    }

}

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        /* ==========================================
           FAMILIA (PROGENITORES)
           ========================================== */
        #family {
            padding: 80px 0;
            background-color: var(--color-primary);
        }

        .parents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .parent-card {
            background: var(--color-bg-light);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform var(--transition-speed);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .parent-card:hover {
            transform: translateY(-5px);
            border-color: var(--color-accent);
        }

        .parent-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }

        .parent-info {
            padding: 25px;
        }

        .parent-info h3 {
            margin-bottom: 10px;
            color: var(--color-text-dark);
        }

        .parent-info p {
            color: var(--color-secondary);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .view-more-hint {            
            font-weight: bold;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-style: italic;
            
        }

        .catalog-cta {
            text-align: center;
            margin-top: 60px;
        }

        /* ==========================================
           CATÁLOGO
           ========================================== */
        #catalog {
            padding: 80px 0;
            background-color: var(--color-bg-light);
        }

        .cats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .cat-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all var(--transition-speed);
            position: relative;
        }

        .cat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .cat-status {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--color-accent);
            color: #000;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        .cat-thumb {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .cat-details {
            padding: 20px;
        }

        .cat-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cat-meta {
            color: var(--color-secondary);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
        }

        /* Modal del Catálogo */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            border-radius: var(--border-radius);
            overflow-y: auto;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            animation: fadeIn 0.3s ease;
        }

        .modal-content.single-column {
            grid-template-columns: 1fr;
            max-width: 600px;
            padding: 30px;
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-secondary);
            z-index: 10;
            background: rgba(255, 255, 255, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .modal-close:hover {
            color: #000;
            background: white;
        }

        .modal-gallery {
            background: #f0f0f0;
            display: flex;
            flex-direction: column;
            width:100%;
            overflow:hidden;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .thumbnails {
            display: flex;
            gap: 10px;
            padding: 10px;
            overflow-x: auto;
            max-width:100%;
            flex-wrap:nowrap;
            scrollbar-width: none;
        }
        .thumbnails::-webkit-scrollbar {
          display: none;
}

        .thumb {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.6;
            transition: 0.2s;
            flex-shrink: 0;
        }

        .thumb:hover,
        .thumb.active {
            opacity: 1;
            border: 2px solid var(--color-accent);
        }

        .modal-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-price {
            font-size: 1.5rem;
            color: var(--color-accent);
            font-weight: bold;
            margin: 10px 0 20px;
            text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
        }

        .info-row {
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .info-label {
            font-weight: bold;
            color: var(--color-secondary);
            font-size: 0.9rem;
        }

        /* Certificado Modal Specifics */
        .certificate-container {
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #ddd;
        }

        .certificate-container img {
            width: 100%;
            height: auto;
        }

        .certificate-container iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        /* ==========================================
           QUIÉNES SOMOS
           ========================================== */
        #about {
            padding: 80px 0;
            background-color: var(--color-primary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .about-text h3 {
            margin-top: 20px;
            margin-bottom: 10px;
            color: var(--color-text-dark);
        }

        .director-card {
            background: var(--color-bg-light);
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #eee;
        }

        .director-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--color-accent);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
            font-weight: bold;
            color: var(--color-secondary);
        }

        .social-link:hover {
            background: var(--color-accent);
            transform: translateY(-3px);
            color: #000;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            background-color: #222;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }

        /* ==========================================
           RESPONSIVE
           ========================================== */
        @media (max-width: 768px) {

            .hero-content,
            .about-grid,
            .modal-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            #home {
                background: linear-gradient(to bottom, #ffffff 60%, #f9f9f9 40%);
                padding-top: 100px;
            }

            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .mobile-menu-btn {
                display: block;
            }

            .main-image {
                height: 250px;
            }
        }

        /* ==========================================
           TESTIMONIOS
           ========================================== */

        #testimonials {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .testimonials-subtitle {
            text-align: center;
            color: var(--color-secondary);
            margin-bottom: 40px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
            transition: .3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .testimonial-preview {
            padding: 15px;
        }

        .testimonial-preview h4 {
            margin-bottom: 8px;
        }

        .testimonial-preview p {
            color: #666;
            font-size: .9rem;
            line-height: 1.5;
        }

        /* MODAL */

        .testimonial-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .85);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .testimonial-modal-content {
            background: white;
            max-width: 900px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
        }

        .testimonial-modal-content img {
            width: 100%;
            height: 100%;
            min-height: 500px;
            object-fit: cover;
        }

        .testimonial-modal-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-modal-info h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .testimonial-modal-info p {
            line-height: 1.8;
            color: #555;
        }

        .testimonial-close {
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 35px;
            cursor: pointer;
            z-index: 10;
        }

        @media(max-width:768px) {

            .testimonial-modal-content {
                grid-template-columns: 1fr;
            }

            .testimonial-modal-content img {
                min-height: 300px;
            }

        }