/* CSS COMPLETO ATUALIZADO (FUNDO CLARO + CARDS NA BASE + LOGO SOME E TEXTO SOBE PARA O CENTRO) */

:root {
    --bg-dark: #0b0c10;
    --text-main: #ffffff;
    --primary-orange: #ff7f11;
    --card-bg: #111318;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main);    
    cursor: url('../img/aguia-branca.png'), auto;
}

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; position: fixed; width: 100%; z-index: 100; transition: background 0.3s; }
.main-nav { display: flex; justify-content: center; flex-grow: 1; }
.main-nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
.main-nav ul li a { color: #ffffff; text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; transition: color 0.3s ease; padding-bottom: 5px; }
.main-nav ul li a:hover { color: var(--primary-orange); }
.main-nav ul li a.active { color: var(--primary-orange); border-bottom: 2px solid var(--primary-orange); }

/* Seletor de Idiomas */
.menu-right { display: flex; align-items: center; gap: 20px; }
.lang-selector { position: relative; user-select: none; }
.lang-current { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
.lang-dropdown { display: none; position: absolute; top: 150%; right: 0; background-color: var(--card-bg); border: 1px solid #333; border-radius: 5px; list-style: none; width: 130px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 200; }
.lang-dropdown.show { display: block; }
.lang-dropdown li { padding: 12px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; transition: 0.3s; cursor: pointer; }
.lang-dropdown li:hover { background-color: #2a2e35; color: var(--primary-orange); }

/* Menu hamburguer invisível no PC */
.menu-icon { font-size: 18px; cursor: pointer; display: none;}

/* Hero */
.hero { position: relative; height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.2); z-index: -1; }
.hero-content { z-index: 1; }

/* === NOVA ANIMAÇÃO: LOGO DESAPARECE E RECOLHE O ESPAÇO PARA O TEXTO SUBIR === */
.main-hero-logo { 
    max-width: 500px; 
    margin: 20px 0; 
    animation: fadeOutLogo 6s forwards; 
}

@keyframes fadeOutLogo {
    0% { opacity: 1; max-height: 600px; margin: 20px 0; visibility: visible; }
    70% { opacity: 1; max-height: 600px; margin: 20px 0; visibility: visible; }
    85% { opacity: 0; max-height: 600px; margin: 20px 0; visibility: hidden; } /* Apenas desaparece visualmente */
    100% { opacity: 0; max-height: 0px; margin: 0px; visibility: hidden; padding: 0; border: none; } /* Encolhe o espaço e puxa o texto para o meio */
}

.tagline { font-family: 'Caveat', cursive; font-size: 40px; margin-bottom: 30px; }
.btn { padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; margin: 0 10px; cursor: pointer; }

/* Botões do Hero (Laranja -> Fica transparente no hover) */
.btn-primary { background-color: var(--primary-orange); color: #fff; border: 2px solid var(--primary-orange); transition: 0.3s;}
.btn-primary:hover { background-color: transparent; color: var(--primary-orange); }

/* CARROSSEL TIPO VÍDEO EXATO */
.expeditions { padding: 80px 50px; overflow: hidden;}
.section-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 30px; }
.section-header h2 { position: relative; font-size: 20px; letter-spacing: 2px; text-transform: uppercase; }
.section-header h2::after { content: ''; position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); width: 100px; height: 2px; background-color: var(--primary-orange); }
.view-all { color: var(--primary-orange); text-decoration: none; font-weight: bold; font-size: 14px; }

.carousel-modern {
    width: 100%;
    height: 70vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background-color: #111; 
}

/* === NÚMERO DO SLIDE === */
.carousel-nav-info {
    position: absolute;
    bottom: 20px; 
    left: 5%;
    z-index: 100;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 5px 10px rgba(0,0,0,0.8);
}
.carousel-nav-info #curr-num { font-size: 35px; color: var(--primary-orange); }
.carousel-nav-info .divider { margin: 0 10px; color: #888; font-size: 24px; }

/* Imagens e Conteúdo do Slide */
.carousel-modern .list .item { width: 100%; height: 100%; position: absolute; inset: 0; }
.carousel-modern .list .item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-modern .list .item::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 30%, transparent 100%); 
}

.carousel-modern .list .item .content {
    position: absolute; top: 20%; width: 1140px; max-width: 80%; left: 5%;
    color: #fff; text-shadow: 0 5px 10px rgba(0,0,0,0.5); z-index: 10;
    display: none; 
}
.carousel-modern .list .item:nth-child(1) .content { display: block; }
.carousel-modern .list .item .title { font-size: 4em; font-weight: 800; line-height: 1.1em; color: var(--primary-orange); text-transform: uppercase; margin-bottom: 10px; }
.carousel-modern .list .item .des { font-size: 1.2em; margin-bottom: 20px; color: #ddd; }
.carousel-modern .list .item .extra-info { display: flex; gap: 20px; margin-bottom: 30px; font-weight: bold; font-size: 14px; }
.btn-modern { display: inline-block; padding: 12px 25px; border-radius: 5px; background-color: var(--primary-orange); color: #fff; text-decoration: none; font-weight: bold; transition: 0.3s; cursor: pointer; }
.btn-modern:hover { background-color: #fff; color: var(--primary-orange); }

/* === MINIATURAS (Alinhadas à Direita) === */
.carousel-modern .thumbnail { 
    position: absolute; 
    bottom: 60px; 
    right: 5%; 
    left: auto;
    width: max-content; 
    z-index: 100; 
    display: flex; 
    gap: 20px; 
}
.carousel-modern .thumbnail .item { width: 150px; height: 220px; flex-shrink: 0; position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.8); border: 2px solid transparent; transition: 0.3s; cursor: pointer; background-color: #222; }
.carousel-modern .thumbnail .item:hover { border-color: var(--primary-orange); }
.carousel-modern .thumbnail .item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.carousel-modern .thumbnail .item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-modern .thumbnail .item .content { position: absolute; bottom: 10px; left: 10px; right: 10px; z-index: 10; }
.carousel-modern .thumbnail .item .content .title { font-weight: bold; color: #fff; font-size: 13px; text-transform: uppercase; }

/* === SETAS DIRETAMENTE ABAIXO DAS MINIATURAS === */
.carousel-modern .arrows { 
    position: absolute; 
    bottom: 10px; 
    right: 5%; 
    left: auto;
    z-index: 100; 
    display: flex; 
    gap: 15px; 
    align-items: center; 
}
.carousel-modern .arrows button { width: 45px; height: 45px; border-radius: 50%; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.5); color: #fff; font-size: 18px; transition: .3s; backdrop-filter: blur(5px); cursor: pointer; }
.carousel-modern .arrows button:hover { background-color: var(--primary-orange); border-color: var(--primary-orange); color: #fff; }

/* Animações Mágicas */
.carousel-modern .list .item:nth-child(1) { z-index: 1; }
.carousel-modern .list .item:nth-child(1) .content .title,
.carousel-modern .list .item:nth-child(1) .content .des,
.carousel-modern .list .item:nth-child(1) .content .extra-info,
.carousel-modern .list .item:nth-child(1) .content .buttons { transform: translateY(50px); filter: blur(20px); opacity: 0; animation: showContent .5s 1s linear 1 forwards; }
@keyframes showContent { to { transform: translateY(0); filter: blur(0); opacity: 1; } }
.carousel-modern .list .item:nth-child(1) .content .title { animation-delay: 0.2s !important; }
.carousel-modern .list .item:nth-child(1) .content .des { animation-delay: 0.4s !important; }
.carousel-modern .list .item:nth-child(1) .content .extra-info { animation-delay: 0.6s !important; }
.carousel-modern .list .item:nth-child(1) .content .buttons { animation-delay: 0.8s !important; }

/* Animação que sai das miniaturas e cresce */
.carousel-modern.next .list .item:nth-child(1) img { width: 150px; height: 220px; position: absolute; bottom: 60px; right: 5%; left: auto; border-radius: 15px; animation: showImage .5s linear 1 forwards; }
@keyframes showImage { to { bottom: 0; right: 0; width: 100%; height: 100%; border-radius: 0; } }
.carousel-modern.next .thumbnail .item:nth-last-child(1) { overflow: hidden; animation: showThumbnail .5s linear 1 forwards; }
@keyframes showThumbnail { from { width: 0; opacity: 0; } }
.carousel-modern.prev .list .item:nth-child(2) { z-index: 2; }
.carousel-modern.prev .list .item:nth-child(2) img { position: absolute; bottom: 0; left: 0; right: auto; animation: outFrame .5s linear 1 forwards; }
@keyframes outFrame { to { width: 150px; height: 220px; bottom: 60px; right: 5%; left: auto; border-radius: 15px; } }
.carousel-modern.prev .thumbnail .item:nth-child(1) { overflow: hidden; opacity: 0; animation: showThumbnail .5s linear 1 forwards; }
.carousel-modern.next .arrows button, .carousel-modern.prev .arrows button { pointer-events: none; }


/* =======================================================
   OUTRAS PÁGINAS E ESTILOS
========================================================*/
.hero-page-left { position: relative; height: 70vh; background-size: cover; background-position: center; display: flex; align-items: center; padding: 0 10%; }
.hero-content-left { position: relative; z-index: 2; text-align: left; max-width: 650px; }
.hero-content-left .subtitle { letter-spacing: 3px; font-size: 12px; margin-bottom: 5px; color: #ccc; }
.hero-content-left h1 { font-size: 70px; font-weight: 800; line-height: 1; margin-bottom: -10px; text-transform: uppercase; }
.hero-content-left .tagline-alt { font-family: 'Caveat', cursive; font-size: 55px; color: var(--primary-orange); margin-bottom: 20px; }
.hero-content-left .desc { font-size: 16px; color: #ddd; margin-bottom: 30px; line-height: 1.6; }
.breadcrumb { font-size: 13px; color: #999; }
.breadcrumb a { color: #999; text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover, .breadcrumb span { color: var(--primary-orange); }
.breadcrumb i { font-size: 10px; margin: 0 5px; }

.destinos-layout { display: flex; gap: 40px; padding: 60px 5%; background-color: var(--bg-dark); }
.destinos-sidebar { width: 260px; flex-shrink: 0; padding-right: 20px; border-right: 1px solid #222; }
.destinos-content { flex-grow: 1; }
.destinos-sidebar h3 { font-size: 14px; margin-bottom: 30px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.filter-group { margin-bottom: 40px; }
.filter-group h4 { font-size: 12px; color: #999; margin-bottom: 15px; text-transform: uppercase; }

.custom-radio { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #ccc; margin-bottom: 12px; cursor: pointer; }
.custom-radio input[type="radio"] { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1px solid #777; border-radius: 50%; outline: none; transition: 0.2s; position: relative; }
.custom-radio input[type="radio"]:checked { border-color: var(--primary-orange); }
.custom-radio input[type="radio"]:checked::after { content: ''; position: absolute; top: 2px; left: 2px; width: 8px; height: 8px; background-color: var(--primary-orange); border-radius: 50%; }

.filter-list { list-style: none; }
.filter-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #ccc; margin-bottom: 15px; cursor: pointer; transition: 0.2s; }
.filter-list li:hover { color: var(--primary-orange); }
.filter-list li i { width: 15px; text-align: center; color: #888; }

.slider-range { width: 100%; appearance: none; height: 4px; background: #333; outline: none; border-radius: 5px; margin-bottom: 10px; }
.slider-range::-webkit-slider-thumb { appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--primary-orange); cursor: pointer; }
.slider-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--primary-orange); font-weight: bold; }
.btn-clear { width: 100%; background: transparent; border: 1px solid #444; color: #fff; padding: 12px; border-radius: 5px; font-size: 11px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; transition: 0.3s; }
.btn-clear:hover { background: #333; color: var(--primary-orange); }

.destinos-header-flex { text-align: center; margin-bottom: 40px; position: relative; }
.destinos-header-flex .section-header { border: none; padding: 0; margin-bottom: 10px; justify-content: center; }
.destinos-subtext { color: #aaa; font-size: 14px; margin-bottom: 20px; }
.sort-right { position: absolute; right: 0; top: 0; }

.expeditions-full { padding: 60px 5%; }
.filters-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.filter-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid #444; color: #ccc; padding: 10px 20px; border-radius: 5px; font-size: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.filter-btn:hover { border-color: var(--primary-orange); color: #fff; }
.filter-btn.active { background-color: var(--primary-orange); color: #fff; border-color: var(--primary-orange); }
.sort-select { background-color: transparent; color: #ccc; border: 1px solid #444; padding: 10px 15px; border-radius: 5px; font-size: 13px; outline: none; cursor: pointer; }
.sort-select option { background-color: var(--card-bg); color: #fff; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.cards-grid-destinos { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

.card { background: var(--card-bg); border-radius: 10px; width: 100%; min-width: 300px; overflow: hidden; border: 1px solid #333; transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-color: #555; }
.card-image { height: 200px; background-size: cover; background-position: center; position: relative; }
.elevation { position: absolute; top: 10px; left: 10px; background: var(--primary-orange); padding: 5px 10px; border-radius: 5px; font-size: 12px; font-weight: bold; }
.favorite-icon { position: absolute; top: 15px; right: 15px; color: #fff; font-size: 18px; cursor: pointer; transition: 0.3s; }
.favorite-icon.active { color: var(--primary-orange); font-weight: 900; }
.card-content { padding: 20px; }
.card-content h3 { font-size: 18px; margin-bottom: 5px; }
.card-desc { font-size: 12px; color: #aaa; margin-top: 10px; line-height: 1.5; }
.location { color: #ccc; font-size: 13px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #333; margin-top: 15px; padding-top: 15px; }
.footer-destinos { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #333; margin-top: 15px; padding-top: 15px; font-size: 12px; color: #888; }
.card-category { font-size: 10px; letter-spacing: 1px; color: #ccc; }
.text-orange { color: var(--primary-orange); }

.cta-banner-destinos { position: relative; background-size: cover; background-position: center; padding: 40px 5%; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.cta-overlay-2 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 1; }
.flex-cta-icon { display: flex; align-items: center; gap: 20px; }
.giant-icon { font-size: 50px; }
.cta-text h2 { font-size: 22px; letter-spacing: 1px; margin-bottom: 5px;}
.cta-text .tagline { font-size: 24px; color: var(--primary-orange); font-family: 'Caveat', cursive;}
.cta-banner { position: relative; background-size: cover; background-position: center; padding: 40px 5%; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(11,12,16,0.9), rgba(11,12,16,0.6)); z-index: 1; }
.cta-content-wrapper { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }

.itinerary-section { padding: 40px 50px 80px; background-color: var(--bg-dark); }
.timeline-container { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 15px; }
.timeline-item { display: flex; align-items: center; background: var(--card-bg); border-radius: 8px; padding: 15px 20px; border-left: 4px solid var(--primary-orange); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.day-badge { font-weight: 800; color: var(--primary-orange); min-width: 80px; font-size: 14px; text-transform: uppercase; }
.day-content { color: #ccc; font-size: 14px; line-height: 1.5; }

.features { padding: 20px 50px 80px; }
.center-header { justify-content: center; }
.features-container { display: flex; justify-content: space-between; align-items: stretch; text-align: center; margin-top: 40px; }
.feature-item { flex: 1; padding: 0 15px; border-right: 1px solid #333; }
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 30px; margin-bottom: 15px; }
.feature-item h4 { font-size: 13px; margin-bottom: 10px; text-transform: uppercase; }
.feature-item p { font-size: 12px; color: #999; line-height: 1.5; }

.newsletter { position: relative; background-size: cover; background-position: center; padding: 80px 50px; display: flex; justify-content: center; align-items: center; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.newsletter-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(11,12,16,0.95) 0%, rgba(11,12,16,0.5) 100%); z-index: 1; }
.newsletter-content { position: relative; z-index: 2; text-align: center; }
.newsletter-content h2 { font-size: 26px; margin-bottom: 10px; }
.newsletter-content p { font-size: 14px; color: #ccc; margin-bottom: 30px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; }
.newsletter-form input { padding: 15px 20px; background: rgba(0, 0, 0, 0.7); border: 1px solid #444; color: #fff; border-radius: 5px; width: 300px; outline: none; }
.newsletter-form input::placeholder { color: #888; }

footer { background-color: var(--bg-dark); padding: 60px 50px 20px; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 50px; }
.footer-col { flex: 1; }
.brand-sub { font-size: 12px; color: #888; margin-top: 10px; margin-bottom: 20px; }
.social-links a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; border: 1px solid #444; border-radius: 50%; color: #fff; text-decoration: none; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.footer-col h4 { font-size: 14px; margin-bottom: 25px; text-transform: uppercase; }
.links-col ul, .contact-col ul { list-style: none; }
.links-col ul li { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding: 10px 0; max-width: 200px; }
.links-col ul li a { color: #bbb; text-decoration: none; font-size: 13px; transition: 0.3s; }
.links-col ul li a:hover { color: var(--primary-orange); }
.contact-col ul li { color: #bbb; font-size: 13px; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.contact-col ul li i { font-size: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #222; padding-top: 20px; font-size: 12px; color: #666; }

/* =======================================================
   RESPONSIVIDADE E MOBILE
========================================================*/
.mobile-video { display: none; }

@media (min-width: 769px) { 
    .menu-icon { display: none !important; } 
}

@media (max-width: 1024px) {
    .destinos-layout { flex-direction: column; padding: 40px 5%; }
    .destinos-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #222; padding-bottom: 30px; }
    .filter-group { display: flex; flex-wrap: wrap; gap: 15px; }
    .filter-group h4 { width: 100%; }
    .cards-grid-4, .cards-grid-destinos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .desktop-video { display: none !important; }
    .mobile-video { display: block !important; }
    
    .menu-icon { display: block !important; }
    
    header { padding: 15px 20px; }
    .main-nav { display: none; position: absolute; top: 65px; left: 0; width: 100%; background-color: rgba(11, 12, 16, 0.98); padding: 20px 0; border-bottom: 1px solid #333; }
    .main-nav.active-mobile { display: flex; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 20px; width: 100%; }
    .hero-content h1 { font-size: 50px; }
    .tagline { font-size: 24px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn { margin: 0; }
    .hero-page-left { padding: 0 5%; text-align: center; justify-content: center; }
    .hero-content-left { text-align: center; }
    .hero-content-left h1 { font-size: 40px; }
    .hero-content-left .tagline-alt { font-size: 35px; }
    
    /* MOBILE MODERNO PARA O CARROSSEL */
    .expeditions { padding: 40px 20px; }
    .carousel-modern .list .item .content { top: 15%; max-width: 90%; left: 5%; }
    .carousel-modern .list .item .title { font-size: 2.5em; }
    
    .carousel-nav-info { bottom: 20px; font-size: 16px; left: 5%; }
    .carousel-nav-info #curr-num { font-size: 28px; }
    
    .carousel-modern .thumbnail { bottom: 60px; right: 5%; left: auto; } 
    .carousel-modern .thumbnail .item { width: 100px; height: 150px; }
    .carousel-modern .arrows { bottom: 10px; right: 5%; left: auto; transform: none;} 
    
    .carousel-modern.next .list .item:nth-child(1) img { width: 100px; height: 150px; bottom: 60px; right: 5%; left: auto; }
    @keyframes outFrameMobile { to { width: 100px; height: 150px; bottom: 60px; right: 5%; left: auto; border-radius: 15px; } }
    .carousel-modern.prev .list .item:nth-child(2) img { animation: outFrameMobile .5s linear 1 forwards; }

    .cards-grid-4, .cards-grid-destinos { grid-template-columns: 1fr; }
    .card { margin: 0 auto; }
    .filters-bar { flex-direction: column; align-items: stretch; }
    .filter-buttons { justify-content: center; }
    .sort-right { position: relative; margin-top: 15px; text-align: center; }
    .features { padding: 40px 20px; }
    .features-container { flex-direction: column; gap: 30px; }
    .feature-item { border-right: none; border-bottom: 1px solid #222; padding-bottom: 20px; }
    .feature-item:last-child { border-bottom: none; }
    .cta-content-wrapper, .flex-cta-icon { flex-direction: column; text-align: center; gap: 20px; }
    .giant-icon { margin-bottom: -10px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { width: 100%; }
    .footer-top { flex-direction: column; gap: 40px; text-align: center; }
    .social-links { justify-content: center; display: flex; }
    .links-col ul li { max-width: 100%; justify-content: center; gap: 10px; }
    .contact-col ul li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* =======================================================
   FORÇAR O CURSOR DA ÁGUIA BRANCA NOS ELEMENTOS CLICÁVEIS
========================================================*/
a, button, .btn, .btn-modern, .nav-arrow, .menu-icon, .lang-selector, .custom-radio, .filter-list li, .btn-clear, .sort-select, .favorite-icon, .thumbnail .item {
    cursor: url('../img/aguia-branca.png'), pointer !important;
}