:root {
    --gold: #d4af37;
    --gold-dark: #b8911e;
    --bg: #ffffff;
    --text: #1a1a1a;
}

html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 100px;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar.scrolled {
    background: var(--bg);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px 100px;
    min-height: 100px;
    /* Ajusta altura al hacer scroll */
}

/* ===== LOGO ===== */
.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    max-width: 280px;
    transition: all 0.3s ease;
    position: absolute;
    left: 10px;
    top: -40px;
}

.default-logo {
    opacity: 1;
}

.scrolled-logo {
    opacity: 0;
}

.navbar.scrolled .default-logo {
    opacity: 0;
}

.navbar.scrolled .scrolled-logo {
    opacity: 1;
}

.navbar.scrolled .logo-img {
    height: 75px;
    /* 🔧 un poco más grande */
    transform: translateY(5px);
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    margin-right: 9px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links li a {
    color: var(--text);
}

/* Subrayado elegante */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    min-width: 150px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: white;
    padding: 10px 16px;
    display: block;
    font-size: 0.90rem;
}

.dropdown-menu li a:hover {
    background: var(--gold);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.navbar.scrolled .dropdown-menu {
    background: white;
    border: 1px solid #ddd;
}

.navbar.scrolled .dropdown-menu li a {
    color: var(--text);
}

.navbar.scrolled .dropdown-menu li a:hover {
    background: var(--gold);
    color: white;
}

/* ===== MENU RESPONSIVE ===== */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-toggle-label span {
        height: 3px;
        width: 26px;
        margin: 4px 0;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 70px;
        right: 0;
        padding: 12px 20px;
    }

    .nav-toggle:checked+.nav-toggle-label+.nav-links {
        display: flex;
    }

    .nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .navbar.scrolled .nav-links {
        background: white;
    }

    .navbar.scrolled .nav-links li a {
        color: var(--text);
    }

    .dropdown-menu {
        position: static;
        background: none;
        box-shadow: none;
        display: none !important;
    }

    .dropdown:hover .dropdown-menu {
        display: none !important;
    }
}

.nav-links a.active {
    color: var(--gold);
    /* tu color dorado */
    font-weight: 900;
}

.nav-links a.active::after {
    width: 100%;
    /* mantiene el subrayado */
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=60") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;      
    box-sizing: border-box;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1100px;
    /* aumentar un poco */
    gap: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.about-title {
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 2;
    top: -20px;
}

.about-title span {
    color: #d4af37;
}


.about-text {
    flex: 1;
    min-width: 280px;
    font-family: 'Poppins', sans-serif;
    margin-top: -275px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.8rem;
}

.about-list li {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: #d4af37;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
}


.about-img {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -75px;
    top: -150px;
    z-index: 1;
}

.about-img img {
    max-width: 380px;
    height: auto;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-title {
        top: -10px;
    }

    .about-text {
        margin-top: -20px;
    }

    .about-img {
        justify-content: center;
        right: 0;
        top: -30px;
    }
}

.tours-section {
    padding: 3rem 0;
    margin-top: -150px;
}

.tours-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-card {
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.tour-card img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-section {
    padding: 5rem 2rem;
}

.gallery-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.gallery-right {
    flex: 1;
}

.gallery-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}



.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.tours-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem 2rem;
}

.tour-card {
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.tour-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    transition: background 0.4s ease, justify-content 0.4s ease;

}

.tour-info span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tour-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.3rem 0;
}

.tour-info .duration {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.tour-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.tour-info .price .desde {
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 0.3rem;
}

.tour-card:hover .tour-info {
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.section-title .underline {
    position: relative;
    display: inline-block;
}

.section-title .underline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #333;
}

.about-agency {
    padding: 70px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1135px;
    margin: 0 auto;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;

}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.about-title span {
    color: #d4af37;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
    margin-left: -1px;
    
}

.about-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #d4af37;
    color: #333;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.about-img {
    flex: 1 1 400px;
}

.about-img img {
    max-height: 450px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}





.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.gallery-title span {
    color: #d4af37;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #d4af37;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1135px;
    margin: 0 auto;
    margin-bottom: 60px; 
}

.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.gallery-left img,
.gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-right {
    flex: 1;
    display: flex;
}

.gallery-right img {
    border-radius: 15px;
}

.gallery-left img:hover,
.gallery-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .gallery-container {
        flex-direction: column;
    }
}



.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Contenedor para cada imagen */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Imagen con zoom suave */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

/* Botón reservar */
.reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
}

.reserve-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.brands-section {
    padding: 5rem 2rem;
    text-align: center;
    margin-top: -130px;
}

.brands-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.brands-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
}

.brand-item {
    position: relative;
    flex: 1 1 150px;
    max-width: 180px;
    cursor: pointer;
    overflow: hidden;
}

.brand-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 0.5rem;
    transform: translateY(20px);
}

.brand-item:hover .brand-overlay,
.brand-item:active .brand-overlay {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .brands-logos {
        gap: 2rem;
    }

    .brand-item {
        flex: 1 1 120px;
        max-width: 140px;
    }

    .brands-title {
        font-size: 2rem;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}







.promo-section {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.promo-title span {
    color: #d4af37;
}

.promo-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.promo-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.promo-person {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    left: -100px;
    top: -100px;
    z-index: 1;
}


.promo-card {
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 2rem 1.5rem;
    width: 450px;
    transition: all 0.4s ease;
    border: 1px solid #ddd;
}


/* Imagen */
.promo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border-bottom: 1px solid #ccc;
    transition: transform 0.4s ease;
}

.promo-card:hover img {
    transform: scale(1.03);
}

/* Tarjeta hover */
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Información */
.promo-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.promo-card p {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Footer: precio a la derecha y botón a la izquierda */
.promo-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

/* Precio */
.promo-card .promo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: right;
}

/* Botón */
.promo-card .promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #d4af37;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid #ccc;
}

.promo-card .promo-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .promo-card {
        width: 90%;
    }
}



.seccion-reserva {
    padding: 50px 0;
    background: #ffffff;
}

.titulo-form {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}


.contenedor-reserva {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
}


.mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.formulario-glass {
    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);

}


.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


@media (max-width: 900px) {
    .contenedor-reserva {
        grid-template-columns: 1fr;
    }

    .grid-form {
        grid-template-columns: 1fr;
    }
}


.form-group {
    position: relative;
    display: flex;
    align-items: center;
}


.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 12px 14px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f9f9f9;
    transition: border 0.3s, box-shadow 0.3s;
}


.form-group label {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group input:not(:placeholder-shown),
.form-group select:valid {
    border: 1px solid #d4af37;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}


.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label {
    top: -6px;
    left: 35px;
    font-size: 12px;
    color: #d4af37;
    background: #fff;
    padding: 0 5px;
    border-radius: 4px;
}


.btn-enviar-dark {
    margin-top: 20px;
    background: #d4af37;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    float: left;
}

.btn-enviar-dark:hover {
    background: #d4af37;
}

.contacto-extra {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin: 40px auto 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contacto-extra .izquierda h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: #d4af37;
}

.contacto-extra .izquierda p {
    color: #555;
    font-size: 14px;
}

.contacto-extra .centro {
    text-align: center;
}


.contacto-extra .frase-contacto {
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    text-align: center;
    margin: 0 auto;
}


.contacto-extra .derecha img {
    max-width: 70px;
    display: block;
    margin-left: auto;
}

.info-contacto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: -10px auto 0;
    width: 90%;
    max-width: 1200px;
}

.info-card {
    background: #fff;
    /* blanco limpio */
    border: 2px solid #d4af37;
    /* solo borde dorado */
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.info-card i {
    font-size: 1.8rem;
    color: #d4af37;
}

.info-card p {
    margin: 0;
    line-height: 1.4;
    font-size: 1.05rem;
    color: #222;
}

.info-card strong {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #111;
}

@media (max-width: 900px) {
    .info-contacto {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .info-contacto {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .contacto-extra {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contacto-extra .derecha img {
        margin: 10px auto 0;
    }

    .info-contacto {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .info-contacto {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: #2c2c2c;
    /* gris oscuro elegante */
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: auto;
}

.footer-col h4 {
    color: #d4af37;
    /* dorado cálido */
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

/* Logo */
.footer-logo {
    width: 140px;
    margin-bottom: 12px;
}

.logo-col p {
    font-size: 13px;
    font-weight: 600;
    color: #f5f5f5;
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.social-links {
    margin-bottom: 10px;
}

.social-links a {
    margin: 0 8px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}


@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        margin: auto;
    }
}