.travel-footer {
    background-color: #0B1120;
    color: #E2E8F0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

/* Efecto de brillo sutil de fondo para dar toque premium */
.travel-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

/* --- SECCIÓN CTA (BOTÓN VER MÁS) --- */
.footer-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .footer-cta {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 4rem 5rem;
    }
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.cta-text {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-text {
        margin-bottom: 0;
    }
    .cta-content {
        max-width: 60%;
    }
}

/* 
   Botón "Ver más": 
   El gradiente cálido resalta dramáticamente sobre el fondo oscuro. 
   Su animación de hover lo hace sentir interactivo y "vivo" (Dynamic Design).
*/
.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FF5A5F 0%, #E01A4F 100%);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px; /* Bordes redondeados para un diseño amigable */
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(224, 26, 79, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-ver-mas::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.btn-ver-mas:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 25px rgba(224, 26, 79, 0.4);
}

.btn-ver-mas:hover::after {
    left: 100%;
}

.btn-ver-mas:active {
    transform: scale(0.98);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-ver-mas:hover .btn-icon {
    transform: translateX(4px);
}

/* --- MAIN FOOTER --- */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-description {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #FF5A5F;
    color: #FFFFFF;
    transform: translateY(-3px);
    border-color: #FF5A5F;
    box-shadow: 0 10px 20px rgba(255, 90, 95, 0.3);
}

.links-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FF5A5F;
    transform: translateX(5px);
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    background: #060B14;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
    margin: 0;
}
