/* ==========================================================================
   MARETOUR TURISMO - ARQUIVO DE ESTILOS CENTRAL (style.css)
   Conceito: Deep Blue, Dark Modern, Alta Performance, Animações Fluidas
   ========================================================================== */

/* --- IMPORTAÇÕES DE SUPORTE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Poppins:wght@500;700&display=swap');

/* --- VARIÁVEIS DO SISTEMA DE DESIGN (TOKENS) --- */
:root {
    /* Cores de Fundo (Camadas de Escuros Modernos) */
    --bg-main: #060b13;          /* Fundo principal profundo, ultra moderno */
    --bg-surface: #0d1527;       /* Superfície de cards, blocos e cabeçalho */
    --bg-surface-hover: #14203b; /* Variação para estados de hover */
    --bg-light: #101a30;         /* Substitutivo do cinza claro tradicional */
    --bg-dark: #04080e;          /* Escuro absoluto para contrastes intensos */
    --bg-light-blue: rgba(0, 242, 254, 0.05);

    /* Cores de Marca & Acentos (Azul Base e Derivados) */
    --color-primary: #4facfe;    /* Azul elétrico vibrante */
    --color-primary-glow: rgba(79, 172, 254, 0.4);
    --color-accent: #00f2fe;     /* Ciano/Neon para conversão extrema */
    --color-accent-glow: rgba(0, 242, 254, 0.4);
    --color-blue-dark: #0056b3;  /* Azul corporativo de ancoragem */
    
    /* Cores de Texto */
    --text-main: #f1f5f9;        /* Branco gelo para leitura perfeita */
    --text-muted: #94a3b8;       /* Cinza azulado para textos secundários */
    --text-dark: #0f172a;        /* Utilizado apenas em elementos muito específicos */
    --color-danger: #ef4444;     /* Vermelho alerta suave */

    /* Efeitos, Sombras e Bordas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px var(--color-primary-glow);
    --border-color: rgba(255, 255, 255, 0.06);

    /* Transições e Curvas */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customizada (Fina e Elegante) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border: 2px solid var(--bg-dark);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Tipografia Avançada */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, iframe {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   CLASSES UTILITÁRIAS E LAYOUT STRUCT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }

/* Destaques de Cor Metálicos/Glow */
.highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.color-primary { color: var(--color-primary); }
.color-danger { color: var(--color-danger); }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

/* Acessibilidade - Apenas Leitores de Tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   COMPONENTES DE BOTÕES E INTERAÇÃO
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Efeito Glow Interno no Hover dos Botões */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-primary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-wide {
    width: 100%;
}

/* ==========================================================================
   CABEÇALHO PRINCIPAL (STICKY & GLASSMORPHISM)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 11, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    transition: var(--transition-smooth);
}

.logo-link:hover .logo {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

/* Menu de Navegação */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-list a:hover {
    color: #ffffff;
}

/* Elemento de Linha Mágica no Hover (Menu Ativo) */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: var(--transition-smooth);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* ==========================================================================
   SEÇÃO HERO (HOME INDEX)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    overflow: hidden;
}

/* Detalhes de Background Blur Luminosos */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: #ffffff;
}

/* Cascata de Delay para Animação de Entrada */
.hero-content.fade-in-up {
    animation-delay: 0.1s;
}

/* ==========================================================================
   SEÇÃO HERO INTERNA (PÁGINAS SECUNDÁRIAS)
   ========================================================================== */
.internal-hero-section {
    padding: 100px 0 80px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at center, rgba(13, 21, 39, 0.6) 0%, var(--bg-main) 100%);
}

.internal-hero-section h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   SEÇÃO DE ESTATÍSTICAS (STAT CARDS)
   ========================================================================== */
.stats-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: linear-gradient(145deg, var(--bg-surface), var(--bg-dark));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.2);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(79, 172, 254, 0.2);
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SEÇÃO SOBRE A MARETOUR (VÍDEO & BENEFÍCIOS)
   ========================================================================== */
.about-section {
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

/* Contêiner de Vídeo Fluido e Moderno */
.about-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-video iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--color-accent);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 4px var(--color-accent-glow));
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS (HOME & DETALHADA)
   ========================================================================== */
.services-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Cards Estilo Glassmorphism Escuro */
.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-surface-hover);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Layout de Grade da Página de Serviços Detalhada */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.service-detail-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    background: var(--bg-surface-hover);
    border-color: rgba(79, 172, 254, 0.3);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.service-detail-card:hover .service-icon-box {
    background: var(--color-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.service-detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ==========================================================================
   SEÇÃO SEGUNDA INTRO (VÍDEO CONCEITO)
   ========================================================================== */
.intro-video-section {
    padding: 100px 0;
}

.video-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.video-text-block p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-inline-block {
    margin-top: 32px;
}

.video-media-block {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
}

/* ==========================================================================
   GRADE DE PACOTES (NACIONAIS & INTERNACIONAIS)
   ========================================================================== */
.packages-section {
    padding: 80px 0;
}

.package-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Design Revolucionário de Card Horizontal */
.package-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    box-shadow: var(--shadow-md);
}

.package-card:hover {
    border-color: rgba(79, 172, 254, 0.25);
    box-shadow: var(--shadow-lg);
}

.package-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--bg-dark);
}

.package-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.package-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.package-header h2 {
    font-size: 2rem;
}

.package-info h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.badge {
    background: linear-gradient(135deg, rgba(79,172,254,0.15), rgba(0,242,254,0.15));
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .inclusions-list {
        grid-template-columns: 1fr;
    }
}

.inclusions-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.inclusions-list i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-actions {
    display: flex;
    gap: 16px;
}

.package-actions .btn {
    flex: 1;
}

/* ==========================================================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #ffffff;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   SEÇÃO DE CREDIBILIDADE (TRUST & BADGES)
   ========================================================================== */
.trust-section {
    padding: 80px 0;
}

.trust-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.trust-info h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.trust-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.registry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.registry-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.registry-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.badge-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    flex: 1;
    transition: var(--transition-smooth);
}

.badge-item:hover {
    transform: scale(1.03);
    border-color: rgba(255,255,255,0.1);
}

.badge-item img {
    margin: 0 auto 16px auto;
    filter: brightness(0.95);
}

.badge-item figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Trust Bar Compacta (Páginas Internas) */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.trust-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}

.trust-text-block h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.trust-text-block p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-images-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.trust-images-flex img {
    filter: brightness(0.9);
    transition: var(--transition-fast);
}

.trust-images-flex img:hover {
    filter: brightness(1);
}

/* ==========================================================================
   PÁGINAS DE CONTATO (FORMULÁRIOS & INFOS)
   ========================================================================== */
.contact-main-section {
    padding: 80px 0;
}

.contact-form-block {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-block h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 36px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.2);
}

/* Coluna de Informações de Contato */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-card-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.company-address {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 6px;
}

.hours-list span {
    color: var(--text-muted);
}

.bg-light-blue {
    background: linear-gradient(145deg, var(--bg-surface), rgba(0, 242, 254, 0.03));
}

.direct-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem !important;
    margin-bottom: 8px;
}

.direct-link-item a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   RODAPÉ E NEWSLETTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Formulário Inline da Newsletter */
.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 14px 60px 14px 16px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 16px;
    background: var(--color-primary);
    color: var(--bg-dark);
    border-radius: calc(var(--radius-md) - 2px);
}

.btn-submit:hover {
    background: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent-glow);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SISTEMA DE ADAPTABILIDADE RESPONSIVA (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

@media (max-width: 992px) {
    .section-padding { padding: 70px 0; }
    .grid-2-columns, .hero-layout, .about-layout, .trust-layout, .trust-flex { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .trust-flex { text-align: center; }
    .trust-images-flex { justify-content: center; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin: 0 auto 32px auto; }
    .hero-actions { display: flex; justify-content: center; }
    .main-nav { display: none; } /* Ideal p/ implementação futura de menu hambúrguer */
    .services-grid { grid-template-columns: 1fr; }
    .package-card { grid-template-columns: 1fr; }
    .package-video-container { min-height: 250px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    html { font-size: 14px; }
    .hero-content h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .package-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .package-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-block { padding: 24px; }
    .trust-badges { flex-direction: column; }
}