/* ========== RESET Y BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografía títulos */
h1,
h2,
h3,
.logo,
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-left: 3px solid #c0a070;
    padding-left: 1rem;
}

h3 {
    color: #1a1a1a;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
}

/* ========== BOTONES ========== */
.btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    padding: 12px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* ========== HEADER NEGRO ========== */
header {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo:hover {
    color: #c0a070;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c0a070;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Menú móvil */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
        background-color: #0a0a0a;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ========== LOGO CON IMAGEN ========== */
.logo {
    display: flex;
    align-items: center;
    /* Elimina cualquier margin-top o position */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: opacity 0.3s ease;
    vertical-align: middle;  /* ← Añade esto */
}

.logo-texto {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    margin-left: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;          /* ← Añade esto */
}

/* Ajusta el navbar para que todo esté centrado */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 80px;        /* ← Añade esto o ajusta el valor */
}

/* ========== HERO ========== */
.hero {
    background: #f5f5f5;
    padding: 100px 0;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    color: #c0a070;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555555;
    font-size: 1rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== GALERÍA DE FOTOS ========== */
.hero-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gallery-item {
    width: 280px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: 1px solid rgba(192, 160, 112, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #c0a070;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== VALORES ========== */
.valores {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.valores-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.valor-item {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s;
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-item i {
    font-size: 2.5rem;
    color: #c0a070;
    margin-bottom: 1rem;
}

.valor-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.valor-item p {
    color: #555555;
    font-size: 0.9rem;
}

/* ========== EVENTOS ========== */
.eventos {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.eventos-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.evento-card {
    flex: 1;
    min-width: 220px;
    background: #f5f5f5;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s;
}

.evento-card:hover {
    transform: translateY(-5px);
}

.evento-card i {
    font-size: 2.5rem;
    color: #c0a070;
    margin-bottom: 1rem;
}

.evento-card h3 {
    color: #1a1a1a;
    font-weight: 500;
}

.evento-card p {
    color: #555555;
    font-size: 0.9rem;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #c0a070;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.card-link:hover {
    color: #a08050;
}

/* ========== MENÚS ========== */
.menus {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.menus-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.menu-card {
    background: #f5f5f5;
    padding: 2rem;
    width: 280px;
    border: 1px solid #e0e0e0;
}

.menu-img {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-card h3 {
    color: #1a1a1a;
    font-weight: 500;
}

.menu-card p {
    color: #555555;
}

.menu-price {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: #c0a070;
    font-size: 0.85rem;
}

.menus-cta {
    margin-top: 2rem;
}

/* ========== ESPACIOS ========== */
.espacios {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.espacios-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.espacio-item {
    flex: 1;
    min-width: 250px;
    background: #f5f5f5;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.espacio-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.espacio-item h3 {
    color: #1a1a1a;
}

.espacio-item p {
    color: #555555;
}

/* ========== NOSOTROS ========== */
.nosotros {
    background: #ffffff;
    padding: 80px 0;
}

.nosotros-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.nosotros-texto {
    flex: 1.5;
}

.nosotros-texto p {
    color: #555555;
}

.nosotros-equipo {
    flex: 1;
    background: #f5f5f5;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.equipo-mini {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.equipo-mini span {
    font-weight: 400;
    color: #1a1a1a;
}

/* ========== TESTIMONIOS ========== */
.testimonios {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.testimonios-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.testimonio-card {
    background: #f5f5f5;
    padding: 2rem;
    max-width: 450px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.testimonio-card i {
    color: #c0a070;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonio-card p {
    color: #555555;
}

.testimonio-card span {
    display: block;
    margin-top: 1rem;
    color: #c0a070;
    font-size: 0.8rem;
}

/* ========== CONTACTO ========== */
.contacto {
    background: #ffffff;
    padding: 80px 0;
}

.contacto-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contacto-info {
    flex: 1;
}

.contacto-info h2 {
    color: #1a1a1a;
}

.contacto-datos {
    margin-top: 2rem;
}

.contacto-datos p {
    margin: 0.5rem 0;
    color: #555555;
}

.contacto-datos i {
    color: #c0a070;
    width: 30px;
}

.contacto-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px 16px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #c0a070;
}

.contacto-form button {
    background: transparent;
    border: 1.5px solid #c0a070;
    color: #c0a070;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.contacto-form button:hover {
    background: #c0a070;
    color: #ffffff;
}

/* ========== FOOTER ========== */
footer {
    background: #0a0a0a;
    color: #aaaaaa;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #aaaaaa;
    font-size: 1.2rem;
    margin: 0 4px;
}

.footer-social a:hover {
    background: #c0a070;
    transform: translateY(-3px);
    color: #0a0a0a;
}

.footer-social .social-svg {
    width: 20px;
    height: 20px;
    filter: invert(70%);
    transition: all 0.3s ease;
}

.footer-social a:hover .social-svg {
    filter: invert(0%);
}

.footer-copy {
    margin-top: 1.5rem;
    font-size: 0.75rem;
}

.footer-copy a {
    color: #aaaaaa;
    text-decoration: none;
}

.footer-copy a:hover {
    color: #c0a070;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .valores-grid,
    .eventos-grid,
    .menus-grid,
    .espacios-grid {
        flex-direction: column;
        align-items: center;
    }

    .nosotros-grid {
        flex-direction: column;
    }

    .contacto-grid {
        flex-direction: column;
    }

    .hero-gallery {
        gap: 1rem;
    }

    .gallery-item {
        width: 100%;
        max-width: 250px;
    }

    .gallery-item img {
        height: 220px;
    }
}

.espacio-item .capacidad {
    display: inline-block;
    background: rgba(192, 160, 112, 0.15);
    padding: 4px 12px;
    font-size: 0.7rem;
    color: #c0a070;
    margin: 0.5rem 0;
}

.espacio-item .btn-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #c0a070;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== TESTIMONIOS MEJORADOS ========== */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonio-card {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: #c0a070;
}

.testimonio-card i.fa-quote-left {
    color: #c0a070;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonio-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonio-card span {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.testimonio-rating {
    margin-top: 0.8rem;
}

.testimonio-rating i {
    color: #c0a070;
    font-size: 0.8rem;
    margin-right: 2px;
}

.testimonios-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.testimonio-valoracion {
    text-align: center;
}

.valoracion-numero {
    font-size: 2rem;
    font-weight: 700;
    color: #c0a070;
    font-family: 'Playfair Display', serif;
}

.valoracion-estrellas i {
    color: #c0a070;
    font-size: 0.9rem;
}

.testimonio-valoracion p {
    font-size: 0.7rem;
    color: #777777;
    margin-top: 0.3rem;
}

.testimonio-enlace a {
    color: #c0a070;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.testimonio-enlace a:hover {
    color: #a08050;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .testimonios-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== FAQ MEJORADO ========== */
.faq {
    margin: 4rem 0;
}

.faq h2 {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: #c0a070;
}

.faq-item h4 {
    color: #c0a070;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #555555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        padding: 1.2rem;
    }
}

/* ========== CLIENTES DESTACADOS ========== */
.clientes-destacados {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-left: 3px solid #c0a070;
}

.clientes-destacados p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.clientes-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.clientes-lista span {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    color: #555555;
    transition: all 0.3s;
}

.clientes-lista span:hover {
    border-color: #c0a070;
    color: #c0a070;
}

/* ========== EQUIPO MEJORADO ========== */
.equipo-mini {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.equipo-mini span {
    font-weight: 400;
    color: #1a1a1a;
    padding: 0.5rem;
    border-bottom: 1px dashed #e0e0e0;
}

.equipo-mini span:last-child {
    border-bottom: none;
}

.equipo-mini strong {
    color: #c0a070;
}

@media (max-width: 768px) {
    .clientes-lista {
        gap: 0.5rem;
    }

    .clientes-lista span {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner-content a {
    color: #c0a070;
}

.cookie-buttons {
    margin-top: 10px;
}

.btn-cookie {
    border: none;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #c0a070;
    color: #1a1a1a;
}

.btn-cookie.reject {
    background-color: #444;
    color: white;
}

.btn-cookie.config {
    background-color: transparent;
    color: #c0a070;
    border: 1px solid #c0a070;
}

/* Panel de Configuración */
.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2a2a2a;
    color: #f5f5f5;
    padding: 2rem;
    z-index: 1001;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-settings-content h3 {
    margin-top: 0;
    color: #c0a070;
}

.cookie-category {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.cookie-category p {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #ccc;
}

html {
    scroll-behavior: smooth;
}

.menu-price,
.especial-precio,
.precio-servicio {
    font-weight: 700;
    font-size: 1.2rem;
    color: #c0a070;
    background: rgba(192, 160, 112, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* ========== BOTÓN FLOTANTE DE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Tooltip (texto que aparece al pasar el ratón) */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1a1a1a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Ocultar tooltip en móviles */
    }
}

/* Animación de latido */
.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estilo para la filosofía (como en Viró) */
.filosofia-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #1a1a1a;
}

/* ========== SELECTOR DE IDIOMA ========== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #c0a070;
}

.lang-btn.active {
    color: #c0a070;
    font-weight: 600;
}

.lang-separator {
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}


/* ========== ICONOS DE CARACTERÍSTICAS EN NEGRO (TODAS LAS PÁGINAS) ========== */
.caracteristicas-detalle h3 i,
.caracteristicas-detalle .caracteristicas-grid i {
    color: #1a1a1a;
}

/* ========== BANNER DE CLIENTES (LOGO MÓVIL) ========== */
.clientes-banner {
    background: #f5f5f5;
    padding: 3rem 0;
    margin: 2rem 0;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    gap: 3rem;
}

.logo-item {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animación de desplazamiento infinito */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación al hacer hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
    }

    .logo-item img {
        height: 45px;
    }

    .logo-track {
        gap: 2rem;
        animation: scrollLogos 15s linear infinite;
    }
}

/* ========== TODOS LOS ICONOS EN NEGRO ========== */
i,
.fas,
.far,
.fab {
    color: #1a1a1a !important;
}

/* Excepciones: iconos que NO deben ser negros */
.whatsapp-float i {
    color: white !important;
}

.btn i,
.btn-outline i {
    color: inherit !important;
}

.slider-btn i {
    color: white !important;
}

.social-svg {
    filter: none !important;
}

.evento-card i,
.evento-card .card-link i {
    color: #1a1a1a;
}

/* Todos los enlaces con clase card-link */
.card-link,
.card-link i,
.evento-card .card-link {
    color: #1a1a1a;
}

.card-link:hover,
.card-link:hover i {
    color: #c0a070;
}

.menu-tag {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.menu-tag:hover {
    color: #c0a070;
}

/* Parche temporal - simula transparencia */
.logo-cliente,
.clientes-lista img,
.logo-item img {
    background-color: #f5f5f5;
    mix-blend-mode: multiply;
}

/* ========== EXCEPCIÓN: COLOR ORIGINAL DE INSTAGRAM ========== */
.footer-social a .fa-instagram {
    color: #E4405F !important;
    /* Color oficial de Instagram */
}

.footer-social a:hover .fa-instagram {
    color: #E4405F !important;
    opacity: 0.8;
}

/* Todas las ubicaciones en negro */
.ubicacion,
.ubicacion span,
.ubicacion i {
    color: #1a1a1a;
}

.capacidad {
    color: #1a1a1a;
    background: rgba(192, 160, 112, 0.1);
    /* Mantiene el fondo sutil */
}
/* ========== VIDEO YOUTUBE ========== */
.video-presentacion {
    margin: 2rem 0;
    padding: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    display: block;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== RESPONSIVE PARA MÓVIL ========== */
@media (max-width: 768px) {
    .video-presentacion {
        margin: 1rem 0;
    }
    
    .video-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    .video-wrapper iframe {
        border-radius: 12px;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .video-wrapper {
        aspect-ratio: 16 / 9;
    }
}
/* ========== VIDEO M4V (si lo usas) ========== */
.video-presentacion-m4v {
    margin: 2rem auto;
    width: 95%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-element {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .video-presentacion-m4v {
        width: 100%;
        margin: 1rem auto;
    }
    .video-element {
        min-height: 250px;
    }
}