.elementor-106 .elementor-element.elementor-element-75fd13a{--display:flex;}.elementor-106 .elementor-element.elementor-element-8486666{width:100%;max-width:100%;}.elementor-106 .elementor-element.elementor-element-8486666.elementor-element{--align-self:center;}body.elementor-page-106:not(.elementor-motion-effects-element-type-background), body.elementor-page-106 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8486666 *//* ==========================================================================
   CONFIGURAÇÕES GERAIS E RESETS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-principal: #05070B;
    --azul-profundo: #071D36;
    --azul-secundario: #0D2648;
    --dourado-principal: #D4A547;
    --dourado-hover: #E7BB63;
    --branco: #FFFFFF;
    --cinza-claro: #D7D7D7;
    --cinza-texto: #E0E0E0;
    
    --font-titulos: 'Oswald', sans-serif;
    --font-textos: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-principal);
    color: var(--branco);
    font-family: var(--font-textos);
    font-weight: 300;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(7, 29, 54, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 38, 72, 0.3) 0%, transparent 50%);
    background-attachment: fixed;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   COMPONENTES REUTILIZÁVEIS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-textos);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--dourado-principal) 0%, #b38430 100%);
    color: #000000;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(212, 165, 71, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--dourado-hover) 0%, var(--dourado-principal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 71, 0.4);
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
}

.btn-outline:hover {
    border-color: var(--dourado-principal);
    color: var(--dourado-principal);
    background: rgba(212, 165, 71, 0.05);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    display: flex;
    width: 100%;
}

.text-gold {
    color: var(--dourado-principal);
}

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

.section-subtitle {
    display: block;
    font-size: 12px;
    color: var(--dourado-principal);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-titulos);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    color: var(--branco);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    width: 100%;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 7, 11, 0.7);
    backdrop-filter: blur(10px);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex !important;
    align-items: center;
}

.nav-menu ul {
    display: flex !important;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    display: inline-block;
}

.nav-menu a {
    color: var(--branco);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dourado-principal);
}

/* ==========================================================================
   HERO SECTION - BACKGROUND RESPONSIVO
   ========================================================================== */
.hero-section {
    min-height: 850px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    /* BACKGROUND PADRÃO (DESKTOP) */
    background: linear-gradient(rgba(5, 7, 11, 0.3), rgba(5, 7, 11, 0.85)), 
                url('assets/bg-road.webp') center center / cover no-repeat;
}

/* BACKGROUND MOBILE - OCULTO POR PADRÃO */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(5, 7, 11, 0.3), rgba(5, 7, 11, 0.85)), 
                url('assets/bg-road-mobile.webp') center center / cover no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.coruja-watermark {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    background: url('assets/owl-watermark.webp') center center / contain no-repeat;
    opacity: 0.12;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
}

.hero-logo-mobile {
    display: none;
}

.hero-title {
    font-family: var(--font-titulos);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--branco);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cinza-texto);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-benefits {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--branco);
    letter-spacing: 1px;
}

.benefit-item i {
    color: var(--dourado-principal);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-car {
    width: 120%;
    max-width: 760px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
    transform: translateX(40px);
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-principal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 71, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    min-height: 280px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 71, 0.4);
    box-shadow: 0 10px 30px rgba(7, 29, 54, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon {
    font-size: 32px;
    color: var(--dourado-principal);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-textos);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--branco);
}

.service-card p {
    font-size: 13px;
    color: var(--cinza-claro);
    line-height: 1.6;
}

/* ==========================================================================
   SOBRE MIM
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: #05070B;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 40px;
    align-items: center;
    position: relative;
}

.about-left {
    display: flex;
    justify-content: center;
}

.profile-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-text {
    color: #A5A5A5;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 14px;
}

.feature-item i {
    color: #D4A547;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.rating-badge {
    background: rgba(16, 20, 29, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-stars {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-stars i {
    color: #D4A547;
    font-size: 28px;
}

.badge-stars-row {
    color: #D4A547;
    font-size: 12px;
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.rating-badge p {
    font-size: 11px;
    font-weight: 600;
    color: #D4A547;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.rating-badge span {
    font-size: 11px;
    color: #A5A5A5;
    opacity: 0.7;
    line-height: 1.3;
}

/* ==========================================================================
   FORMAS DE PAGAMENTO
   ========================================================================== */
.payment-section {
    padding: 60px 0;
    background: rgba(7, 29, 54, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.payment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.payment-info {
    flex: 0 0 350px;
}

.payment-title {
    font-family: var(--font-titulos);
    font-size: 32px;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 15px;
    line-height: 1.2;
}

.payment-text {
    font-size: 14px;
    color: var(--cinza-texto);
    line-height: 1.8;
}

.payment-highlight {
    font-weight: 500;
    color: var(--dourado-principal);
}

.payment-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 71, 0.1);
    padding: 18px 10px;
    border-radius: 12px;
    width: 105px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: var(--dourado-principal);
    background: rgba(212, 165, 71, 0.03);
}

.payment-item i {
    color: var(--dourado-principal);
    font-size: 32px;
}

.payment-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--cinza-claro);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ==========================================================================
   ESTATÍSTICAS
   ========================================================================== */
.stats-section {
    padding: 120px 0;
    background: rgba(7, 29, 54, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-card i {
    font-size: 36px;
    color: var(--dourado-principal);
}

.stat-card h3 {
    font-family: var(--font-titulos);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: var(--branco);
}

.stat-card p {
    font-size: 14px;
    color: var(--cinza-claro);
    margin-top: 4px;
}

/* ==========================================================================
   DESTINOS & CTA INTERMEDIÁRIO
   ========================================================================== */
.destinations-section {
    padding: 120px 0;
    background-color: var(--bg-principal);
}

.destinations-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: start;
}

.block-title {
    font-family: var(--font-titulos);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--branco);
}

.destinations-list {
    list-style: none;
}

.destinations-list li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    transition: color 0.3s;
    color: var(--branco);
}

.destinations-list li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--dourado-principal);
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.destinations-list li:hover {
    color: var(--dourado-principal);
}

.destinations-list i.fa-long-arrow-alt-right {
    margin: 0 8px;
    opacity: 0.5;
}

.cta-middle-box {
    background: linear-gradient(135deg, rgba(13, 38, 72, 0.4) 0%, rgba(7, 29, 54, 0.2) 100%);
    border: 1px solid rgba(212, 165, 71, 0.2);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-middle-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
}

.cta-middle-box h3 {
    font-family: var(--font-titulos);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dourado-principal);
}

.cta-middle-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cinza-texto);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--branco);
}

.cta-features i {
    color: var(--dourado-principal);
}

.cta-watermark-icon {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 200px;
    color: rgba(212, 165, 71, 0.03);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--bg-principal);
}

.testimonials-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    padding: 30px 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.testimonial-card .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonial-card .stars i {
    color: #D4A547;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #D7D7D7;
    margin-bottom: 14px;
    min-height: 80px;
}

.client-name {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    border-color: #D4A547;
    color: #D4A547;
    background: rgba(212, 165, 71, 0.05);
}

.slider-btn.prev-btn {
    margin-right: 15px;
}

.slider-btn.next-btn {
    margin-left: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D4A547;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-principal);
}

.faq-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--branco);
    padding: 20px 0;
    font-family: var(--font-textos);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header i {
    font-size: 12px;
    transition: transform 0.3s;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body p {
    font-size: 14px;
    color: var(--cinza-claro);
    line-height: 1.6;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header {
    color: var(--dourado-principal);
}

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

.faq-img-container {
    border: 1px solid rgba(212, 165, 71, 0.15);
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
}

.faq-img {
    border-radius: 16px;
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta-section {
    padding: 120px 0;
    background-color: var(--bg-principal);
}

.final-cta-wrapper {
    background: linear-gradient(90deg, rgba(13, 38, 72, 0.3) 0%, rgba(5, 7, 11, 0.8) 100%);
    border: 1px solid rgba(212, 165, 71, 0.15);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.final-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 750px;
}

.final-cta-phone-icon {
    font-size: 42px;
    color: var(--dourado-principal);
}

.final-cta-left h2 {
    font-family: var(--font-titulos);
    font-size: 28px;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 8px;
}

.final-cta-left p {
    font-size: 14px;
    color: var(--cinza-texto);
    line-height: 1.5;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.main-footer {
    background: #030407;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.main-footer a,
.footer-col a,
.footer-col ul a,
.footer-grid a,
.dev-credits a,
.social-links a,
.contact-info a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 28% repeat(3, 18%) 18%;
    gap: 30px;
}

.col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.col-brand .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.col-brand .logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    margin-top: 5px;
}

.footer-col h4 {
    font-family: var(--font-titulos);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--branco);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--dourado-principal) !important;
    text-decoration: none !important;
}

.contact-info li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--dourado-principal);
    width: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--branco) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--dourado-principal);
    color: var(--dourado-principal) !important;
    background: rgba(212, 165, 71, 0.05);
    text-decoration: none !important;
}

.dev-credits {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

.dev-credits a,
.dev-credits a:link,
.dev-credits a:visited,
.dev-credits a:hover,
.dev-credits a:active,
.dev-credits a:focus {
    color: var(--dourado-principal) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: inline-block !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
}

.dev-credits a:hover {
    color: var(--dourado-hover) !important;
    opacity: 0.7 !important;
}

/* ==========================================================================
   WHATSAPP FIXO FLUTUANTE
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    color: var(--branco);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1200px) {
    .container, .header-container {
        padding: 0 40px;
    }
    .hero-title {
        font-size: 56px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rating-badge {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-benefits {
        justify-content: center;
    }
    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }
    .hero-car {
        transform: none;
        width: 100%;
    }
    .destinations-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-right {
        order: -1;
    }
    .final-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .final-cta-left {
        flex-direction: column;
    }
    .payment-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .payment-info {
        flex: initial;
        max-width: 100%;
    }
    .payment-grid {
        justify-content: center;
        gap: 12px;
    }
    .payment-item {
        width: 95px;
        padding: 15px 5px;
    }
}

/* ==========================================================================
   MEDIA QUERY - MOBILE (PRINCIPAL)
   ========================================================================== */
@media (max-width: 768px) {
    .container, .header-container {
        padding: 0 24px;
    }
    
    /* ==========================================
       HERO - BACKGROUND MOBILE
       ========================================== */
    .hero-section {
        background: none !important;
        min-height: auto;
        height: auto;
        padding: 30px 0 40px 0 !important;
        background-attachment: scroll !important;
    }
    
    /* ATIVA O BACKGROUND MOBILE */
    .hero-section::before {
        opacity: 1 !important;
    }
    
    /* ==========================================
       HEADER MOBILE
       ========================================== */
    .main-header {
        height: auto;
        position: relative;
        padding: 10px 0;
        background: rgba(5, 7, 11, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .logo {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 5px 0 0 0;
    }
    
    .nav-menu ul {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }
    
    .nav-menu ul li {
        display: inline-block !important;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 4px 0;
        color: var(--branco);
    }
    
    .nav-menu a:hover {
        color: var(--dourado-principal);
    }

    /* ==========================================
       HERO MOBILE - CONTEÚDO
       ========================================== */
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .hero-logo-mobile {
        display: block !important;
        margin-bottom: 15px;
    }
    
    .hero-logo-mobile .logo-img-mobile {
        height: 70px;
        width: auto;
        display: block;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 32px;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-car {
        transform: none;
        width: 100%;
        max-width: 400px;
    }
    
    .coruja-watermark {
        width: 200px;
        height: 200px;
        top: 40%;
        opacity: 0.08;
    }
    
    /* ==========================================
       SERVIÇOS MOBILE
       ========================================== */
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }
    
    /* ==========================================
       SOBRE MOBILE
       ========================================== */
    .about-section {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    .profile-wrapper {
        width: 160px;
        height: 160px;
    }
    
    /* ==========================================
       PAGAMENTO MOBILE
       ========================================== */
    .payment-section {
        padding: 40px 0;
    }
    .payment-title {
        font-size: 24px;
    }
    .payment-item {
        width: 80px;
        padding: 12px 6px;
    }
    .payment-item i {
        font-size: 24px;
    }
    .payment-item span {
        font-size: 9px;
    }
    
    /* ==========================================
       ESTATÍSTICAS MOBILE
       ========================================== */
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* ==========================================
       DESTINOS MOBILE
       ========================================== */
    .destinations-section {
        padding: 60px 0;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .destinations-list {
        max-width: 320px;
        margin: 0 auto;
    }
    .destinations-list li {
        padding: 12px 0;
        font-size: 13px;
    }
    .cta-middle-box {
        padding: 30px 20px;
    }
    .cta-middle-box h3 {
        font-size: 24px;
    }
    
    /* ==========================================
       DEPOIMENTOS MOBILE
       ========================================== */
    .testimonials-section {
        padding: 60px 0 !important;
    }
    .testimonial-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        padding: 25px 20px !important;
    }
    .slider-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
    .slider-btn.prev-btn {
        margin-right: 10px;
    }
    .slider-btn.next-btn {
        margin-left: 10px;
    }
    
    /* ==========================================
       FAQ MOBILE
       ========================================== */
    .faq-section {
        padding: 60px 0;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-right {
        order: -1;
    }
    .faq-img {
        height: 200px;
    }
    
    /* ==========================================
       CTA FINAL MOBILE
       ========================================== */
    .final-cta-section {
        padding: 60px 0;
    }
    .final-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .final-cta-left {
        flex-direction: column;
    }
    .final-cta-left h2 {
        font-size: 22px;
    }
    
    /* ==========================================
       RODAPÉ MOBILE
       ========================================== */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .col-brand {
        align-items: center;
    }
    .col-brand .logo {
        justify-content: center;
    }
    .footer-col ul {
        align-items: center;
    }
    .contact-info li {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-links {
        justify-content: center;
    }
    .dev-credits {
        text-align: center;
    }
    
    /* ==========================================
       WHATSAPP FLOATING MOBILE
       ========================================== */
    .whatsapp-floating {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* ==========================================================================
   DISPOSITIVOS MUITO PEQUENOS
   ========================================================================== */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px 0 !important;
    }
}

/* ==========================================================================
   FALLBACK PARA NAVEGADORES QUE NÃO SUPORTAM ::BEFORE
   ========================================================================== */
@supports not (background: linear-gradient(0deg, #000, #000)) {
    .hero-section {
        background: linear-gradient(rgba(5, 7, 11, 0.3), rgba(5, 7, 11, 0.85)), 
                    url('assets/bg-road-mobile.webp') center center / cover no-repeat !important;
    }
    .hero-section::before {
        display: none !important;
    }
}

/* ==========================================================================
   DISPOSITIVOS MUITO ANTIGOS (< 360px)
   ========================================================================== */
@media (max-width: 360px) {
    .hero-section {
        background: linear-gradient(135deg, #05070B 0%, #071D36 100%) !important;
        background-attachment: scroll !important;
    }
    .hero-section::before {
        display: none !important;
    }
}/* End custom CSS */