/* =============================================
   SISTEMA DE TURISMO VALLEGRANDE - ESTILOS PRINCIPALES
   ============================================= */

:root {
    --color-primary: #1a305e;
    --color-secondary: #f4bf3b;
    --color-primary-dark: #213c74;
    --color-bg: #f8f9fb;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --border-radius: 12px;
    
    --font-principal: 'Outfit', 'Inter', sans-serif;
    --font-titulos: 'Poppins', 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
.top-header-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.header-site-title {
    color: #1a305e;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.header-site-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f4bf3b;
}

.navbar {
    background-color: #213c74 !important;
    padding: 0.5rem 0 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.4rem 0 !important;
    backdrop-filter: blur(15px);
    background-color: rgba(22, 48, 76, 0.95) !important;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: transparent !important;
}

.brand-text {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #f4bf3b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.navbar-brand-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 0;
    background: transparent !important;
}

.navbar-brand-logo:hover {
    transform: scale(1.05);
}

.navbar-brand-logo img,
.navbar-brand-logo img#mainLogo {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    background: transparent !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
    .navbar-brand-logo img {
        max-height: 45px;
    }
}

.navbar-nav {
    gap: 0.3rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-link:hover, .nav-link.active {
    color: #f4bf3b !important;
    background-color: transparent !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    background-color: #213c74 !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: rgba(255,255,255,0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(255,255,255,0.08) !important;
    color: #f4bf3b !important;
    transform: translateX(3px);
}

.user-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login-gold {
    background-color: #f4bf3b !important;
    color: #1a305e !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0.5rem 1.8rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.btn-login-gold:hover {
    background-color: #e5b02b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244,191,59,0.3);
    color: #1a305e !important;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f4bf3b;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(22, 48, 76, 0.98);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 1rem;
        margin-top: 1rem;
    }
    .navbar-nav { gap: 0.2rem; }
    .user-buttons {
        margin-top: 1rem;
        flex-direction: column;
    }
    .user-buttons .btn { width: 100%; text-align: center; }
}

/* ============================================
   HERO SECTION VALLEGRANDE
   ============================================ */
.hero-section-vallegrande {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-welcome-cursive,
.hero-main-title,
.hero-stars-divider,
.hero-tagline,
.hero-action-buttons {
    animation-fill-mode: forwards;
}

/* ============================================
   MUNICIPIOS CARDS
   ============================================ */
.municipios-overlap-container {
    position: relative;
    z-index: 30;
    width: 100%;
}

.municipio-card {
    height: 155px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

.municipio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(12,34,63,0.3);
}

.municipio-card:hover .m-title {
    color: #f4bf3b !important;
}

@media (max-width: 768px) {
    .municipio-card {
        height: 130px;
    }
}

/* ============================================
   SECCIÓN DE BÚSQUEDA
   ============================================ */
.search-section {
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #1a305e;
}

.search-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a305e, #213c74);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.search-icon-wrapper i {
    font-size: 30px;
    color: white;
}

.search-input-wrapper {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eef2f7;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #1a305e;
    box-shadow: 0 0 0 3px rgba(12,34,63,0.1);
}

.search-button {
    background: #f4bf3b;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    color: #1a305e;
    font-weight: 600;
    transition: all 0.3s;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244,191,59,0.35);
}

/* ============================================
   CARRUSEL DE SECCIONES
   ============================================ */
.carousel-section {
    margin: 60px 0;
}

.sections-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.sections-carousel-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 5px;
}

.sections-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 280px;
    perspective: 1000px;
    cursor: pointer;
}

.carousel-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.carousel-card:hover .carousel-card-inner {
    transform: rotateY(180deg);
}

.carousel-card-front, .carousel-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a305e;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(26,48,94,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(244,191,59,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: #f4bf3b;
}

.carousel-card-back {
    background: #1a305e;
    transform: rotateY(180deg);
}

.carousel-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-explore {
    background: #f4bf3b;
    color: #1a305e;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: #1a305e;
    color: #f4bf3b;
    border: 1px solid #f4bf3b;
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: #f4bf3b;
    color: #1a305e;
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

/* ============================================
   TARJETAS DE FEATURE
   ============================================ */
.featured-section {
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #f4bf3b;
    color: #1a305e;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(135deg, #1a305e, #213c74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.featured-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.1);
}

.featured-card-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
}

.rating-badge, .price-badge, .call-link, .view-link {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.75rem;
    text-decoration: none;
}

.call-link, .view-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.call-link:hover, .view-link:hover {
    background: #f4bf3b;
    color: #1a305e;
}

.event-date-badge {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.event-date-badge .day {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.featured-card-content {
    padding: 20px;
}

.featured-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a305e;
}

.featured-card-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eef2f7;
}

.location, .event-price {
    font-size: 0.7rem;
    color: #888;
}

.event-price .free {
    color: #10b981;
    font-weight: normal;
}

.btn-more {
    color: #1a305e;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-more:hover {
    transform: translateX(5px);
    color: #f4bf3b;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    border: 2px solid #1a305e;
    color: #1a305e;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #1a305e;
    color: #f4bf3b;
    transform: translateY(-2px);
}

/* ============================================
   GALERÍA
   ============================================ */
.gallery-section {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.gallery-link {
    color: #1a305e;
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.gallery-link:hover {
    color: #f4bf3b;
}

/* ============================================
   RECETAS
   ============================================ */
.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.recipe-time {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
}

.recipe-content {
    padding: 20px;
}

.recipe-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.7rem;
    color: #888;
}

.difficulty {
    padding: 2px 8px;
    border-radius: 20px;
}

.difficulty.fácil { background: #d1fae5; color: #10b981; }
.difficulty.media { background: #fed7aa; color: #f59e0b; }
.difficulty.difícil { background: #fee2e2; color: #ef4444; }

.btn-recipe {
    color: #1a305e;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-recipe:hover {
    transform: translateX(5px);
    color: #f4bf3b;
}

/* ============================================
   TOUR BANNER
   ============================================ */
.tour-banner {
    background: linear-gradient(135deg, #1a305e, #213c74);
    border-radius: 30px;
    margin: 60px 0;
    overflow: hidden;
}

.tour-banner-content {
    padding: 50px;
}

.tour-badge {
    display: inline-block;
    background: rgba(244,191,59,0.12);
    color: #f4bf3b;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tour-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.tour-subtitle {
    color: #f4bf3b;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tour-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tour-features .feature {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-features .feature i {
    color: #f4bf3b;
    font-size: 1.1rem;
}

.btn-tour {
    background: #f4bf3b;
    color: #1a305e;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244,191,59,0.35);
    background: transparent;
    color: #f4bf3b;
    border: 1px solid #f4bf3b;
}

.tour-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ============================================
   EMPRENDEDORES SECTION
   ============================================ */
.entrepreneur-section {
    margin: 60px 0;
}

.entrepreneur-card {
    background: linear-gradient(135deg, #1a305e, #213c74);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
}

.entrepreneur-icon {
    width: 80px;
    height: 80px;
    background: #f4bf3b;
    color: #1a305e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.entrepreneur-icon i {
    font-size: 35px;
}

.entrepreneur-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.entrepreneur-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.entrepreneur-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.benefit-item i {
    color: #f4bf3b;
}

.btn-entrepreneur {
    background: #f4bf3b;
    border: none;
    color: #1a305e;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-entrepreneur:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244,191,59,0.4);
    background: #e5b230;
    color: #1a305e;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-vallegrande {
    background-color: #122244;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Outfit', sans-serif;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-vallegrande a {
    transition: all 0.3s ease;
}

.footer-vallegrande a:hover {
    color: #f4bf3b !important;
    transform: translateX(4px);
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #f4bf3b !important;
    color: #122244 !important;
    transform: translateY(-3px);
}

.footer-filmstrip-container {
    position: relative;
    overflow: hidden;
    background: #1a305e;
    padding: 25px 0 10px;
    margin-top: 50px;
}

.footer-filmstrip-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollFilmstrip 35s linear infinite;
}

@keyframes scrollFilmstrip {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-190px * 6)); }
}

/* ============================================
   BOTONES FLOTANTES
   ============================================ */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #1a305e;
    border: 1px solid rgba(244,191,59,0.3);
    border-radius: 50%;
    color: #f4bf3b;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #f4bf3b;
    color: #1a305e;
    transform: translateY(-3px);
}

.language-selector {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 1000;
}

.lang-btn {
    background: rgba(12,34,63,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244,191,59,0.3);
    color: #f4bf3b;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.lang-btn:hover {
    background: #f4bf3b;
    color: #1a305e;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
    .carousel-nav { width: 35px; height: 35px; }
    
    .tour-banner-content { padding: 30px; }
    .tour-title { font-size: 1.5rem; }
    
    .entrepreneur-card { padding: 30px 20px; }
    .entrepreneur-title { font-size: 1.3rem; }
    
    .float-whatsapp { width: 45px; height: 45px; font-size: 22px; bottom: 20px; right: 20px; }
    .scroll-top { bottom: 80px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .language-selector { bottom: 80px; left: 20px; }
    .lang-btn { padding: 7px 14px; font-size: 0.7rem; }
    
    .hero-main-title { font-size: 3rem !important; }
    .hero-welcome-cursive { font-size: 1.5rem !important; }
}

@media (max-width: 480px) {
    .hero-main-title { font-size: 2.5rem !important; }
}