/* ======================================= */
/* 1. CONFIGURAÇÕES BASE          */
/* ======================================= */

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Trava geral: impede que qualquer elemento (carrossel, animações etc.)
   force a página a ficar mais larga que a tela e "tremer" para os lados */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Variáveis de Cores (Paleta Profissional) */
:root {
    --color-primary: #0047e0;       /* Azul moderno para CTA */
    --color-secondary: #001951;     /* Azul escuro/marinho para detalhes */
    --color-accent: #ffb300;        /* Dourado/Amarelo para avaliações */
    --color-text-dark: #333;
    --color-text-light: #fff;
    --color-background-light: #fff;
    --color-shadow: rgba(0, 0, 0, 0.08);
}

/* Estilos de Corpo e Container */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: #f4f7fa; /* Fundo suave */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo img {
    height: 62px; /* diminua ou aumente conforme precisar */
    width: auto;
}

/* Títulos de Seção */
.section-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--color-text-dark);
    margin: 60px 0 40px;
    font-weight: 700;
}


/* ======================================= */
/* 2. COMPONENTES            */
/* ======================================= */

/* --- Botões --- */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    font-weight: bold;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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


/* ======================================= */
/* 3. LAYOUT E NAVEGAÇÃO           */
/* ======================================= */

/* --- Cabeçalho e Navegação --- */
.top-header {
    background-color: var(--color-background-light);
    box-shadow: 0 2px 4px var(--color-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* Compensa a altura do cabeçalho fixo, para o conteúdo não nascer escondido atrás dele */
body {
    padding-top: 92px;
}

@media (max-width: 768px) {
    body {
        padding-top: 82px;
    }

    .contact-section {
        scroll-margin-top: 85px;
    }
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.company-logo {
    font-size: 1.8em;
    color: var(--color-primary);
    font-weight: 800;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.nav-cta {
    margin-left: 40px;
    /* O estilo principal vem de .btn-primary */
}


/* ======================================= */
/* 4. SEÇÕES DO SITE           */
/* ======================================= */

/* --- Seção Hero --- */
.hero-section {
    background-color: #e3f2fd; /* Fundo mais claro para destaque */
    padding: 80px 0;
}

.hero-section2 {
    background-color: #e3f2fd; /* Fundo mais claro para destaque */
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text-area {
    flex: 1;
}

.hero-text-area h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color-secondary);
}

.hero-text-area2 h2 {
    font-size: 2.0em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color-secondary);
}

.hero-section2 .subtitle {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
}

.hero-text-area .subtitle {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #555;
    text-align: justify;
}

.hero-cta {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background-color: var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 8px 15px var(--color-shadow);
    background-image: url('caminho/para/imagem_hero_profissional.jpg'); /* Substitua a URL */
    background-size: cover;
    background-position: center;
}

/* ===== CONTROLE DE ESPAÇAMENTO DAS SECTIONS ===== */

/* Sections padrão */
.hero-section2 {
  padding: 25px 0;   /* diminui o espaço vertical */
  margin: 0;
}

/* Última section (assinatura) */
.hero-section {
  padding: 30px 0;
}

/* Títulos */
.hero-section2 h1 {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Textos */
.hero-section2 .subtitle {
  margin-bottom: 12px;
}

/* Ajuste fino entre seções */
.hero-section2 + .hero-section2 {
  margin-top: -10px; /* aproxima as sections */
}

/* Lista de valores */
.hero-section2 ul {
  padding-left: 20px;
  margin-top: 10px;
}

.hero-section2 ul li {
  margin-bottom: 10px;
}


.highlight-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-text-light);
    padding: 20px;
    border-radius: 8px;
}
.highlight-box i {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero-video {
    width: 100%;
    max-width: 510px;        /* CORRIGIDO: era "width: 510px" fixo, causava vazamento horizontal no mobile */
    height: auto;
    margin-bottom: 10px;
    border-radius: 12px;
    object-fit: cover;
}

.audio-hint {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    display: block;
    margin-top: 5px;
}

/* Lista institucional */

ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

/* Marcador (ponto) */
ul li::marker {
  color: #000;
  font-size: 18px; /* tamanho do marcador */
}

/* --- Oferta em Destaque (Grade de 3 Pacotes) --- */
.best-offer-section {
    padding: 40px 0;
}

.offer-item {
    background-color: var(--color-background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--color-shadow);
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.2);
}

.offer-image-small {
    height: 180px;
    width: 100%;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
}

.offer-details-small {
    padding: 15px;
    text-align: center;
}

.offer-details-small h3 {
    font-size: 1.2em;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.location-small {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

/* Características do Pacote (Aéreo, Transfer, Dias) */
.package-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    text-align: left;
}

.package-features li {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o texto e ícone */
}

.package-features i {
    margin-right: 8px;
    color: var(--color-secondary);
    font-size: 1.1em;
}

/* Avaliação e Preço */
.rating-small {
    color: var(--color-accent);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.price-box-small {
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8em;
}

.price-main-small {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-main-small span {
    font-size: 0.6em;
    vertical-align: top;
}

.price-per {
    font-size: 0.75em;
    color: #888;
    margin-top: 5px;
}

.features-inline {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.features-inline li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.features-inline i {
  color: #0047e0;
  margin-right: 6px;
}

.features-inline .divider {
  margin: 0 10px;
  color: #999;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-list i {
    color: #0047e0; /* WhatsApp feel */
    font-size: 18px;
    min-width: 22px;
}

.contact-list a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: #0047e0;
    text-decoration: underline;
}

.btn-small-cta {
    padding: 8px 20px;
    font-size: 0.9em;
    width: 100%;
    margin-top: 5px;
}

/* --- Carrossel Automatico (Pacotes) --- */
/* NOTA: unifiquei aqui a definição de .offers-grid/.offer-item, que antes
   estava duplicada (uma vez como grid, outra como flex). A versão flex é
   a que efetivamente valia, então removi a duplicata para evitar confusão. */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track {
  overflow: hidden;
  width: 100%;
}

.offers-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.offer-item {
  min-width: calc(100% / 3 - 14px);
}

/* Botões */
.carousel-btn {
  background: #0047e0;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-btn:hover {
  background: #0036b3;
}

.carousel-btn.prev {
  margin-right: 10px;
}

.carousel-btn.next {
  margin-left: 10px;
}

/* --- Seção de Benefícios Chave --- */
.key-benefits-section {
    background-color: var(--color-background-light);
    padding: 30px 0 70px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 10px;
}

.benefit-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.benefit-box i {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.benefit-box h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.benefit-box p {
    font-size: 0.9em;
    color: #666;
}

.links {
  display: flex;
  gap: 20px; /* espaço entre eles */
}

.links p {
  margin: 0;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

.links a::after {
    content: " ↗";
    font-size: 0.85em;
}

/* --- Valores do Pacote --- */
.price-box-small {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* SELO 12X */
.installment-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #009688;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
}

/* PARCELA */
.price-installments {
  color: #009688;
  font-size: 14px;
  margin: 6px 0;
  font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

/* --- Seção de Contato/Orçamento (Fundo Azul) --- */
.contact-section {
    background-color: var(--color-secondary);
    padding: 60px 0;
    color: var(--color-text-light);
    scroll-margin-top: 100px;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
}

.contact-text p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

.contact-text ul {
    list-style: none;
    padding: 0;
}

.contact-text li {
    margin-bottom: 10px;
    font-size: 1em;
}

.contact-text i {
    margin-right: 10px;
    color: var(--color-accent);
}

.contact-form-area {
    flex: 1;
    background-color: var(--color-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.budget-form input, .budget-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    resize: none;
}

.budget-form textarea {
    min-height: 100px;
}

.privacy-text {
    text-align: center;
    font-size: 0.8em;
    color: #999;
    margin-top: 10px;
}

/* --- Widget de Cotações de Moedas (abaixo do formulário de orçamento) --- */
.currency-widget {
    margin-top: 20px;
    padding: 14px 20px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    color: var(--color-text-light);
}

.currency-widget-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 22px;
}

.currency-widget-title {
    font-weight: 700;
    font-size: 0.85em;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-accent);
    white-space: nowrap;
}

.currency-widget-title i {
    margin-right: 6px;
}

.currency-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.currency-label {
    font-size: 0.8em;
    opacity: 0.75;
}

.currency-value {
    font-size: 1.05em;
    font-weight: 700;
}

.currency-updated {
    text-align: center;
    font-size: 0.72em;
    opacity: 0.65;
    margin: 8px 0 0;
}


/* --- Rodapé --- */
.main-footer {
    background: #111;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9em;
}

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

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

.footer-logo {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.footer-logo-img {
    width: 140px; /* ajuste conforme desejar */
    margin-bottom: 8px;
}

.footer-brand-text {
    font-size: 14px;
    color: #ccc;
}

.footer-info {
    font-size: 14px;
}

.social-media {
    margin-bottom: 70px;
}

.social-media a {
    color: #fff;
    font-size: 22px;
    margin-left: 15px;
    transition: 0.3s;
}

.social-media a:hover {
    color: #D3B49F;
}

.company-logo-img {
    height: 40px; /* Ajuste a altura desejada */
    width: auto;
}

/* ======================================= */
/* 4. SEÇÕES DO SITE - Pagamento (CARD ÚNICO MODERNO) */
/* ======================================= */

.payment-section {
    padding: 50px 0;
    background-color: #f4f7fa; 
}

/* --- CONTAINER PRINCIPAL: O Card Único Estendido --- */
.payment-main-card {
    /* Largura moderada para centralizar o conteúdo */
    max-width: 900px; 
    margin: 0 auto; /* Centraliza */
    
    padding: 40px;
    border-radius: 12px;
    background-color: var(--color-background-light); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Sombra mais visível para efeito "card" */
}

/* --- Separador entre passos --- */
.card-separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* --- ESTILO DOS PASSOS (1 e 2) --- */
.payment-step-box h3 {
    font-size: 1.6em;
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary); /* Linha de destaque */
    padding-bottom: 5px;
}
.payment-step-box h3 i {
    margin-left: 10px;
    color: var(--color-primary);
}


/* === DETALHES DO ORÇAMENTO (Passo 1) === */

.payment-step-box label {
    display: block;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--color-text-dark);
}

#payment-amount-input {
    width: 100%;
    padding: 18px 15px; 
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.5em; 
    font-weight: 800;
    text-align: left; /* Deixamos alinhado à esquerda para facilitar a digitação */
    color: var(--color-primary);
}

.small-text-info {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 30px;
    text-align: left;
}

.final-amount-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.final-amount-display p {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--color-text-dark);
}

.price-main-flexible {
    font-size: 2.2em; /* Um pouco menor para caber melhor */
    font-weight: 800;
    color: var(--color-primary);
    text-align: right;
}

.package-reference-text {
    font-size: 1em;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 10px;
}
.package-reference-text i {
    color: var(--color-accent); 
    margin-right: 8px;
}


/* === DADOS DO CARTÃO (Passo 2) === */

.card-element-placeholder {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    min-height: 50px; 
    background-color: #fafafa;
}

.payment-form input#cardholder-name {
    padding: 15px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Nota de Segurança */
.security-note {
    text-align: center; /* 🔑 GARANTE A CENTRALIZAÇÃO */
    margin-top: 25px;
    font-size: 0.9em;
    color: #388e3c; 
    font-weight: 600;
}

.security-note i {
    margin-right: 5px;
}

/* Agrupamento dos campos de validade e CVV (Lado a Lado) */
.card-extra-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.card-extra-fields .extra-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px; 
    height: 50px; 
    background-color: #fafafa;
}

/* Botão Flutuante Whatsapp */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
}

.whatsapp-text {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Carrossel automático "Também Te Levamos Para" (marquee, direita->esquerda) */
.marquee-section {
    padding: 40px 0 50px;
    background: #fff;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-card {
    flex-shrink: 0;
    width: 220px;
    text-decoration: none;
    color: var(--color-secondary);
    text-align: center;
}

.marquee-card-img {
    width: 220px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--color-shadow);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.marquee-card:hover .marquee-card-img {
    transform: translateY(-4px);
}

.marquee-card span {
    font-weight: 600;
    font-size: 0.95em;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-card {
        width: 160px;
    }
    .marquee-card-img {
        width: 160px;
        height: 110px;
    }
    .marquee-track {
        animation-duration: 20s;
    }
}
.dicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dicas-grid .offer-item {
    min-width: 0;
}

@media (max-width: 992px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dicas-grid {
        grid-template-columns: 1fr;
    }
}

/* Guia de Viagem (páginas guia-*.html) */
.guide-nav {
    background: var(--color-secondary);
    position: sticky;
    top: 92px;
    z-index: 90;
    overflow-x: auto;
}

.guide-nav-links {
    display: flex;
    gap: 5px;
    white-space: nowrap;
}

.guide-nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    font-size: 0.9em;
    font-weight: 500;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-nav-links a:hover {
    background: rgba(255,255,255,0.1);
}

.guide-hero {
    background: #E3F2FD;
    padding: 75px 0 40px;
}

.guide-hero h1 {
    color: var(--color-secondary);
    font-size: 2.4em;
    margin-bottom: 20px;
}

.guide-intro {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

.guide-hero-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .guide-hero-image {
        height: 180px;
    }
}

.guide-section {
    padding: 50px 0;
    scroll-margin-top: 145px;
}

.guide-section--alt {
    background: #f4f7fa;
}

.guide-section h2 {
    color: var(--color-secondary);
    font-size: 1.7em;
    margin-bottom: 18px;
}

.guide-section p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 800px;
}

.guide-cta {
    background: var(--color-secondary);
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.guide-cta h2 {
    margin-bottom: 12px;
}

.guide-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .guide-nav {
        top: 82px;
    }

    .guide-hero {
        padding: 60px 0 30px;
    }

    .guide-hero h1 {
        font-size: 1.8em;
    }

    .guide-section {
        padding: 35px 0;
        scroll-margin-top: 130px;
    }

    .guide-section h2 {
        font-size: 1.4em;
    }
}

.google-testimonials {
    background: #f5f5f5;
    padding: 40px 20px;
}

.google-testimonials .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.google {
    color: #0047e0;
    margin-bottom: 5px;
}

.business {
    color: #333;
    font-size: 20px;
}

.testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 46px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-card p {
    text-align: justify;
    line-height: 1.6;
    color: #444;
    hyphens: auto;
    text-justify: inter-word;
    font-size: 14px;
}

.testimonial-header {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header strong {
    display: block;
}

.date {
    font-size: 12px;
    color: #777;
}

.stars {
    color: #fbbc05;
    font-size: 14px;
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0047e0;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:hover {
    opacity: 1;
    background: #003bb8;
}

/* Link da Comunidade - Whatsapp*/

ul li {
  list-style: none;
  margin-bottom: 10px;
}

ul li i {
  margin-right: 8px;
  color: #25D366;
}

ul li a {
  text-decoration: none;
  color: inherit;
}

ul li a:hover {
  text-decoration: underline;
}

/* Isso esconde o botão hambúrguer em computadores/telas cheias */
.menu-toggle {
    display: none !important;
}

/* Remove qualquer comportamento de clique, cor azul ou sublinhado forçado por smartphones */
.phone-fixed {
    color: inherit !important;          /* Herda a cor branca/padrão do bloco de texto */
    text-decoration: none !important;   /* Remove o sublinhado */
    pointer-events: none !important;    /* Desativa completamente o clique/toque */
    cursor: default !important;         /* Mantém a seta do rato normal no computador */
}

span.phone-fixed[href^="tel:"],
span.phone-fixed[href^="sms:"] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
}


/* ======================================= */
/* 5. RESPONSIVIDADE           */
/* ======================================= */
/* NOTA: unifiquei todos os blocos @media (max-width: 768px) que estavam
   espalhados e repetidos no arquivo original em um único bloco, na mesma
   ordem em que apareciam, para eliminar o aninhamento de @media dentro de
   @media que havia no arquivo original. O comportamento é o mesmo, só
   organizado. */

/* Dispositivos Médios (Tablets e Ecrãs até 992px) */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image-area {
        width: 100%;
        max-width: 100%;
    }

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

    .hero-text-area .subtitle {
        text-align: center;
    }

    .testimonial-carousel {
        padding: 0 40px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .offer-item {
        min-width: calc(100% / 2 - 10px);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dispositivos Pequenos (Telemóveis até 768px) */
@media (max-width: 768px) {

    .nav-bar {
        gap: 12px;
    }

    .company-logo img {
        height: 52px !important;
        margin: 2px 0;
    }

    .menu-toggle i {
        color: var(--color-secondary) !important; /* Força o ícone a ficar azul escuro e visível */
    }

    /* Isso faz o botão aparecer APENAS quando a tela for menor que 768px */
    .menu-toggle {
        display: block !important;
        font-size: 1.6em;
        color: var(--color-secondary);
        cursor: pointer;
        z-index: 110;
    }

    /* Menu Mobile Dinâmico */
    .main-nav {
        display: none !important;
        flex-direction: column;
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #ffffff !important;
        box-shadow: 0 4px 10px var(--color-shadow);
        padding: 20px 0 !important;
        z-index: 100 !important;
    }

    /* Ativado via JS */
    .main-nav.active {
        display: flex !important;
    }

    .main-nav a {
        margin: 12px 0;
        font-size: 1.1em;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: block !important;
        margin: 20px auto 0 !important;
        width: 80% !important;
        max-width: 280px !important;
        text-align: center !important;
        white-space: nowrap !important;
        color: #fff !important;
        font-weight: 700 !important;
    }

    .hero-text-area {
        text-align: center !important;
        padding: 0 8px;
    }

    .hero-text-area h1 {
        font-size: 2.2em;
        text-align: center !important;
    }

    .hero-text-area .subtitle {
        text-align: center !important;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8em;
        margin: 40px 0 20px;
    }

    .hero-section2 .subtitle {
        text-align: left;
    }

    /* Configuração de Itens Únicos */
    .features-inline {
        padding: 0;
        margin: 15px 0;
        width: 100% !important;
    }

    .features-inline li {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
        text-align: center !important;
        border: none !important;
        row-gap: 6px;
    }

    .feature-pair {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .features-inline .divider {
        margin: 0 10px;
        color: #999;
    }

    .features-inline i {
        margin-right: 8px !important;
        flex-shrink: 0;
    }

    /* COLOCAR OS PACOTES UM ABAIXO DO OUTRO */
    .offers-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        transform: none !important;
    }

    .offer-item {
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 0 10px 0 !important;
    }

    /* Ocultar botões de seta do carrossel no mobile */
    .carousel-btn {
        display: none !important;
    }

    /* CENTRALIZAR INFORMAÇÕES DOS PACOTES NO MOBILE */
    .offer-details-small {
        text-align: center !important;
    }

    /* Centralizar os preços e textos de taxas */
    .price-box-small {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

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

    /* AJUSTE DA SEÇÃO DE CONTATO / ORÇAMENTO */
    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .contact-info,
    .contact-text {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .contact-info h2,
    .contact-info p,
    .contact-text h2,
    .contact-text p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-info ul,
    .contact-info div,
    .contact-text ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding-left: 0 !important;
    }

    .contact-info li,
    .contact-text li,
    .contact-info p.phone-fixed-container {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: auto !important;
        margin-bottom: 15px !important;
    }

    .contact-info a,
    .phone-fixed {
        text-align: center !important;
        display: inline-block !important;
    }

    .contact-info i,
    .contact-text i {
        width: 24px !important;
        margin-right: 10px !important;
        text-align: center !important;
        flex-shrink: 0;
    }

    /* Ajuste da caixa branca do formulário */
    .contact-form-container,
    .contact-form-area,
    .contact-content form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* CORREÇÃO: vídeo do Hero responsivo (ver também regra base .hero-video acima) */
    .hero-video {
        width: 100%;
        max-width: 100%;
    }

    /* CORREÇÃO: Depoimentos em carrossel horizontal deslizante,
       um depoimento inteiro por vez (desliza com o dedo) */
    .testimonial-carousel {
        padding: 0;
    }

    .testimonial-carousel .carousel-btn {
        display: none;
    }

    .testimonial-track {
        flex-direction: row;
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    /* Ícones dos pacotes: espaçamento controlado no bloco acima (.features-inline) */
}

    /* Ícones do Selo do Google nos Cards Depoimentos */

.testimonial-card {
    flex: 0 0 38% !important;
}
