/* ==========================================
   1. RESET & CSS VARIABLES
   ========================================== */
:root {
    --bg-dark: #0d0d0d;
    --bg-card: #171717;
    --bg-card-hover: #222222;
    --bg-alt: #121212;
    --bg-overlay: rgba(13, 13, 13, 0.85);

    --primary-gold: #eab308;
    --primary-gold-hover: #ca8a04;
    --gold-glow: rgba(234, 179, 8, 0.25);

    --text-white: #ffffff;
    --text-gray-light: #d1d5db;
    --text-gray-muted: #9ca3af;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(234, 179, 8, 0.4);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 10px 25px -5px rgba(234, 179, 8, 0.3);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-gray-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Regra Global para Responsividade de Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   2. TYPOGRAPHY & REUSABLE CLASSES
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.highlight {
    color: var(--primary-gold);
}

.highlight-gold {
    background: linear-gradient(135deg, #fef08a 0%, #eab308 50%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-top: 10px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(234, 179, 8, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
}

.text-center { text-align: center; }
.text-max-800 { max-width: 800px; margin: 0 auto; }
.relative-z { position: relative; z-index: 2; }

/* Grid Layouts */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

/* ==========================================
   3. BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    padding: 10px;
    margin: 0px 10px 0px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-gold);
    line-height: 1.0rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(234, 179, 8, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(234, 179, 8, 0.05);
}

.btn-whatsapp-submit {
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-submit:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }

/* ==========================================
   4. HEADER & NAV
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 14px 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    max-width: 35%;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray-light);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
    
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   5. HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: url('assets/caldas-novas-bg.webp?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-gray-light);
    margin-bottom: 30px;
    max-width: 580px;
}

/* Route Pills Visual */
.route-pills {
    background: rgba(23, 23, 23, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 100%;
}

.pill-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-white);
}

.pill-gold {
    background: rgba(234, 179, 8, 0.15);
    border-color: var(--border-gold);
    color: var(--primary-gold);
    font-weight: 600;
}

.route-arrow {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray-muted);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-item i {
    color: var(--primary-gold);
}

/* Form Card */
.form-card {
    background: rgba(23, 23, 23, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium), 0 0 30px rgba(234, 179, 8, 0.1);
    width: 100%;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-gray-muted);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-gold);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.form-note {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-gray-muted);
    margin-top: 12px;
}

/* ==========================================
   6. ROTAS / DESTINOS SECTION
   ========================================== */
.routes-map-container {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 0.4fr 1fr;
    gap: 20px;
    align-items: center;
}

.map-card-header {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.route-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
    background: rgba(234, 179, 8, 0.03);
}

.route-item .code {
    background: var(--primary-gold);
    color: #000;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.route-item strong { display: block; color: var(--text-white); font-size: 0.95rem; }
.route-item small { color: var(--text-gray-muted); font-size: 0.8rem; }

.connector {
    text-align: center;
    position: relative;
}

.animated-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    width: 100%;
    margin-bottom: 15px;
    animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.badge-express {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gold);
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--primary-gold);
}

.badge-express i { font-size: 1.4rem; margin-bottom: 4px; }
.badge-express span { font-weight: 800; font-size: 0.75rem; letter-spacing: 1px; }
.badge-express small { font-size: 0.65rem; color: var(--text-gray-muted); }

.destination-item .icon-dest {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* ==========================================
   7. SOBRE NÓS
   ========================================== */
.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    width: 100%;
}

.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-num { color: var(--primary-gold); font-size: 1.2rem; }
.badge-txt { font-weight: 600; font-size: 0.9rem; color: var(--text-white); }

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 24px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-pill i { color: var(--primary-gold); }

/* ==========================================
   8. SERVIÇOS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-premium), 0 0 20px rgba(234, 179, 8, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    border: 1px solid var(--border-gold);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray-muted);
    font-size: 0.95rem;
}

/* ==========================================
   9. VEÍCULOS
   ========================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-premium);
}

.vehicle-img-holder {
    position: relative;
    height: 220px;
    overflow: hidden;
    width: 100%;
}

.vehicle-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-img-holder img {
    transform: scale(1.05);
}

.capacity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.capacity-badge.badge-gold {
    border-color: var(--border-gold);
    color: var(--primary-gold);
}

.vehicle-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.vehicle-desc {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.vehicle-features {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vehicle-features li {
    font-size: 0.85rem;
    color: var(--text-gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-features li i {
    color: var(--primary-gold);
}

.vehicle-info .btn {
    margin-top: auto;
}

/* ==========================================
   10. POR QUE ESCOLHER
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 26px;
    border-radius: 12px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
}

/* ==========================================
   11. AVALIAÇÕES
   ========================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 14px;
    position: relative;
}

.stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reviewer-info strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-gray-muted);
}

/* ==========================================
   12. CTA BANNER
   ========================================== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: url('https://www.melhoresdestinos.com.br/wp-content/uploads/2024/06/resort-em-caldas-novas-capa.jpeg?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.88);
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-gray-light);
    margin-bottom: 30px;
}

/* ==========================================
   13. FAQ ACCORDION
   ========================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    color: var(--primary-gold);
    transition: var(--transition);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 0 24px 20px 24px;
    color: var(--text-gray-muted);
    font-size: 0.95rem;
}

.accordion-item.active {
    border-color: var(--border-gold);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* ==========================================
   14. CONTATO
   ========================================== */
.contact-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
}

.contact-details {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--primary-gold);
    background: rgba(234, 179, 8, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.contact-item strong {
    display: block;
    color: var(--text-white);
}

.contact-item p {
    color: var(--text-gray-muted);
}

.contact-graphic {
    display: flex;
    justify-content: center;
}

.graphic-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 360px;
    box-shadow: var(--shadow-premium);
}

.big-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.graphic-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.graphic-box p {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
}

/* ==========================================
   15. FOOTER
   ========================================== */
.footer {
    background: #080808;
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray-light);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: var(--text-gray-muted);
    font-size: 0.85rem;
}

/* ==========================================
   16. BOTÃO WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.tooltip-text {
    visibility: hidden;
    width: 100px;
    background-color: var(--bg-card);
    color: var(--text-white);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    right: 70px;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* ==========================================
   17. REVEAL ANIMATIONS (SCROLL)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ==========================================
   18. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Tablets e Telas Médias (<= 1024px) */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 0.75rem;
    }
    .btn {
        line-height: 01rem;
        margin: 10px;
        gap: 8px;
        padding: 8px 8px;
        font-size: 0.74rem;
    }
    .logo-img {
        max-width: 70%;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    .connector {
        padding: 20px 0;
    }

    .animated-line {
        display: none;
    }

    .image-frame img {
        height: 350px;
    }
}

/* Dispositivos Móveis (<= 768px) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header-container {
        padding: 0 15px;
    }
    .logo-img {
        max-width: 70%;
        max-height: 35px;
    }
    /* Correção do Menu Gaveta Mobile */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border-color);
        padding: 100px 30px 30px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn-header {
        display: none;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .form-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .routes-map-container {
        padding: 20px;
    }

    .contact-card-main {
        padding: 30px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-pills {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Telas Pequenas de Celular (<= 480px) */
@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .vehicle-features {
        grid-template-columns: 1fr;
    }

    .image-frame img {
        height: 250px;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        border-radius: 8px;
    }
}

.social-widget-container.dark-theme {
                    display: flex;
                    gap: 16px;
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                    max-width: 600px;
                    width: 100%;
                    margin: 0 auto;
                    box-sizing: border-box;
                }

                .dark-theme .widget-card {
                    flex: 1;
                    background: #1e1e24;
                    /* Fundo escuro fosco */
                    border-radius: 16px;
                    padding: 20px;
                    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
                    border: 1px solid #2d2d35;
                    /* Borda sutil */
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
                }

                .dark-theme .widget-card:hover {
                    transform: translateY(-2px);
                    border-color: #3f3f4a;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
                }

                .dark-theme .card-header {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    margin-bottom: 12px;
                }

                .dark-theme .brand-icon {
                    width: 24px;
                    height: 24px;
                }

                /* Cores dos ícones ajustadas para alto contraste */
                .dark-theme .tripadvisor-card .brand-icon {
                    color: #00e6b0;
                }

                .dark-theme .instagram-card .brand-icon {
                    color: #f09433;
                }

                .dark-theme .brand-name {
                    font-size: 14px;
                    font-weight: 600;
                    color: #a0a0ab;
                }

                .dark-theme .card-body {
                    text-align: center;
                }

                /* TripAdvisor */
                .dark-theme .rating-value {
                    font-size: 32px;
                    font-weight: 700;
                    color: #ffffff;
                    line-height: 1;
                }
                .dark-theme .stars {
                    justify-content: center;
                    color: #00e6b0;
                    font-size: 16px;
                    margin: 4px 0;
                }

                .dark-theme .card-subtitle {
                    font-size: 12px;
                    color: #80808e;
                }

                /* Instagram */
                .dark-theme .insta-grid {
                    display: flex;
                    align-items: center;
                    justify-content: space-around;
                    padding-top: 6px;
                }

                .dark-theme .stat-box {
                    flex: 1;
                }

                .dark-theme .stat-value {
                    font-size: 22px;
                    font-weight: 700;
                    color: #ffffff;
                }

                .dark-theme .stat-label {
                    font-size: 12px;
                    color: #80808e;
                    margin-top: 2px;
                }

                .dark-theme .stat-divider {
                    width: 1px;
                    height: 28px;
                    background-color: #2d2d35;
                }

                /* Responsividade */
                @media (max-width: 480px) {
                    .social-widget-container.dark-theme {
                        flex-direction: column;
                    }
                }