        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --azul-principal: #0047AB;
            --azul-oscuro: #002366;
            --azul-claro: #4169E1;
            --amarillo-principal: #FFD700;
            --amarillo-oscuro: #FFA500;
            --verde: #28a745;
            --rojo: #DC3545;
            --gris: #495057;
            --gris-claro: #f8f9fa;
            --blanco: #ffffff;
            --negro: #212529;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--negro);
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            background: var(--blanco);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--amarillo-principal);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 3rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 1.3rem;
            display: block;
            transition: all 0.3s;
            border-radius: 8px;
        }

        .nav-link:hover {
            background: var(--amarillo-principal);
            color: var(--azul-oscuro);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--blanco);
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            padding: 1rem 0;
            margin-top: 0.5rem;
            border-top: 3px solid var(--amarillo-principal);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background: var(--gris-claro);
            border-left-color: var(--amarillo-principal);
            padding-left: 2rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--azul-principal);
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            z-index: 999;
        }

        .nav-menu.active .nav-item {
            width: 100%;
        }

        .nav-menu.active .nav-link {
            padding: 1rem 2rem;
            border-radius: 0;
        }

        .nav-menu.active .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            border-left: 3px solid var(--amarillo-principal);
            margin: 0;
            padding: 0.5rem 0;
            background: var(--gris-claro);
            display: none;
        }

        .nav-menu.active .nav-item.active .dropdown-menu {
            display: block;
        }

        /* Hero Casa que Acoge */
        .hero-casa {
            margin-top: 90px;
            height: 70vh;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.85), rgba(255, 165, 0, 0.9)),
                url('https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-casa::before {
            content: '🏠';
            position: absolute;
            font-size: 25rem;
            opacity: 0.1;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            text-align: center;
            color: var(--azul-oscuro);
            z-index: 2;
            padding: 2rem;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .hero-icon {
            font-size: 5rem;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            font-weight: 500;
            line-height: 1.8;
        }

        /* Contenido Principal */
        .contenido-principal {
            padding: 6rem 2rem;
            background: white;
        }

        .contenido-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .introduccion {
            text-align: center;
            margin-bottom: 5rem;
        }

        .badge-principal {
            display: inline-block;
            background: linear-gradient(135deg, var(--amarillo-principal), var(--amarillo-oscuro));
            color: var(--azul-oscuro);
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .introduccion h2 {
            font-size: 3.5rem;
            color: var(--azul-principal);
            margin-bottom: 2rem;
            font-weight: 800;
            line-height: 1.3;
        }

        .introduccion p {
            font-size: 1.3rem;
            color: var(--gris);
            line-height: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: justify;
        }

        /* Grid de Imágenes */
        .imagenes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 5rem 0;
        }

        .imagen-card {
            position: relative;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.4s;
        }

        .imagen-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        }

        .imagen-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .imagen-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: all 0.4s;
        }

        .imagen-card:hover .imagen-overlay {
            transform: translateY(0);
        }

        .imagen-overlay h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .imagen-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Valores Section */
        .valores-casa {
            background: var(--gris-claro);
            padding: 6rem 2rem;
        }

        .valores-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            color: var(--azul-principal);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gris);
            margin-bottom: 4rem;
        }

        .valores-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .valor-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border-top: 5px solid var(--amarillo-principal);
        }

        .valor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .valor-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .valor-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--amarillo-principal), var(--amarillo-oscuro));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .valor-card h3 {
            font-size: 1.8rem;
            color: var(--azul-principal);
            font-weight: 700;
        }

        .valor-card p {
            color: var(--gris);
            line-height: 2;
            font-size: 1.05rem;
        }

        /* Footer */
        footer {
            background: var(--negro);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--amarillo-principal);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.6rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--amarillo-principal);
            padding-left: 10px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            align-items: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .social-link.facebook {
            background: #1877f2;
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: white;
            flex-shrink: 0;
            display: block;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .imagenes-grid {
            display: grid;
            gap: 20px;
        }

        .imagen-card {
            position: relative;
            overflow: hidden;
        }

        .imagen-bg {
            width: 100%;
            height: 250px;
            /* ajusta según quieras */
            background-size: cover;
            background-position: center;
        }

        .imagen-overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
        }


        /* Animaciones */
        @keyframes float {

            0%,
            100% {
                transform: translateY(-50%) translateX(0);
            }

            50% {
                transform: translateY(-50%) translateX(-30px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .imagenes-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .valores-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-casa {
                height: 60vh;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 1rem;
            }

            .hero-icon {
                font-size: 3rem;
            }

            .hero-content .subtitle {
                font-size: 1.1rem;
            }

            .introduccion h2 {
                font-size: 2.5rem;
            }

            .introduccion p {
                font-size: 1.1rem;
            }

            .imagenes-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .valor-header {
                flex-direction: column;
                text-align: center;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .imagen-card {
                height: 300px;
            }

            .valor-card {
                padding: 2rem;
            }
        }