/**
 * ============================================================
 * STYLE.CSS — Base, variáveis, reset, layout, header, hero, footer, BLOG
 * ============================================================
 * Projeto: Rio Quente Reservas
 * Versão: Mobile-First Otimizada e Sem Duplicatas
 * ============================================================
 */

:root {
    --azul-escuro: #003B95;
    --azul-ciano: #017fb0;
    --azul-vibrante: #0066FF;
    --laranja: #FFAA00;
    --laranja-hover: #ff9800;
    --rosa: #E91E63;
    --verde-online: #25D366;

    --branco: #ffffff;
    --off-white: #FAF7F2;
    --cinza-claro: #f5f5f7;
    --cinza-medio: #9ca3af;
    --cinza-escuro: #374151;
    --preto: #111827;

    --estrela: #FFC107;

    --fonte-principal: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1280px;
    --padding-section: 6rem 0;

    --sombra-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --sombra-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --sombra-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --sombra-colorida: 0 10px 30px rgba(1, 127, 176, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --transicao: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao-lenta: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET GLOBAL — Mobile-First
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--fonte-principal);
    font-size: 16px;
    line-height: 1.6;
    color: var(--preto);
    background-color: var(--branco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

body.no-scroll {
    overflow: hidden;
}

img, picture, video, iframe, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--preto);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-highlight {
    background: linear-gradient(120deg, var(--laranja) 0%, var(--rosa) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-ciano {
    color: var(--azul-ciano);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: var(--container-max);
    margin: 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    box-shadow: var(--sombra-md);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                box-shadow 0.3s ease,
                top 0.3s ease;
}

@media (min-width: 1281px) {
    .site-header {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .site-header.header--hidden {
        transform: translateX(-50%) translateY(-120%);
    }
}

.site-header.header--scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--sombra-lg);
    top: 0.75rem;
}

.site-header.header--hidden {
    transform: translateY(-120%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.25rem;
    gap: 0.75rem;
    min-height: 56px;
}

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

.header-logo img {
    height: 36px;
    width: auto;
    transition: transform var(--transicao);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav .nav-list {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cinza-escuro);
    border-radius: var(--radius-pill);
    transition: all var(--transicao);
    white-space: nowrap;
    text-decoration: none;
}

.header-nav .nav-list a:hover,
.header-nav .nav-list a.active {
    color: var(--azul-ciano);
    background: rgba(1, 127, 176, 0.08);
}

.header-cta {
    flex-shrink: 0;
}

.header-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.header-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--azul-escuro);
    border-radius: 2px;
    transition: all var(--transicao);
    transform-origin: center;
}

.header-toggle.toggle--open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.header-toggle.toggle--open span:nth-child(2) {
    opacity: 0;
}

.header-toggle.toggle--open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.header-nav-close {
    display: none;
}

@media (max-width: 992px) {
    .header-toggle { display: flex; }
    .header-cta { display: none; }
    
    .site-header {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        top: 0.75rem;
        max-width: none;
        transform: none;
    }
    
    .site-header.header--hidden { transform: translateY(-120%); }
    .header-nav .nav-list { display: none; }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(135deg, var(--azul-escuro) 0%, #001f4d 100%);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
        padding: 5rem 2rem 2rem;
        transition: right var(--transicao);
        z-index: 9998;
        overflow-y: auto;
    }
    
    .header-nav.nav--open { right: 0; }
    
    .header-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .header-nav .nav-list a {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--branco);
        border-radius: var(--radius-md);
        border-left: 3px solid transparent;
    }
    
    .header-nav .nav-list a:hover,
    .header-nav .nav-list a.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--laranja);
        border-left-color: var(--laranja);
    }
    
    .header-nav-close {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        align-items: center;
        justify-content: center;
        color: var(--branco);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all var(--transicao);
        border: none;
        z-index: 10;
    }
    
    .header-nav-close:hover {
        background: var(--laranja);
        color: var(--preto);
        transform: rotate(90deg);
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--branco);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: -2;
}

.hero-background-fallback { display: none !important; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--branco);
    letter-spacing: -0.02em;
}

.hero-title .text-highlight {
    background: linear-gradient(120deg, var(--laranja) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 2rem;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--branco);
    transition: all var(--transicao);
}

.glass-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-quote-widget-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.hero-quote-widget {
    margin-bottom: 0 !important; /* Remove margem negativa que causava sobreposição */
    position: relative;
    z-index: 10;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section {
    padding: var(--padding-section);
    position: relative;
}

.section-diferenciais {
    background: var(--branco);
    padding-top: 11rem;
}

.section-pacotes { background: var(--off-white); }
.section-hoteis { background: var(--branco); }
.section-depoimentos { background: linear-gradient(180deg, var(--off-white) 0%, var(--branco) 100%); }
.section-blog { background: var(--branco); }
.section-blog-lista { background: var(--branco); padding: 4rem 0 6rem; }
.section-faq { background: var(--azul-escuro); color: var(--branco); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(1, 127, 176, 0.1);
    color: var(--azul-ciano);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-faq .section-eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--laranja);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-faq .section-title { color: var(--branco); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
}

.section-faq .section-subtitle { color: rgba(255,255,255,0.8); }

.section-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.section-cta-text {
    font-size: 1.05rem;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
}

.section-faq .section-cta-text { color: rgba(255,255,255,0.8); }

/* ============================================================
   WAVE DIVIDERS (Base)
   ============================================================ */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
    margin-bottom: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave-divider-1, .wave-divider-2 { background: var(--branco); }
.wave-divider-3 { background: var(--branco); }
.wave-divider-4 { background: var(--off-white); }
.wave-divider-5 { background: var(--azul-escuro); }
.wave-divider-6 { background: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #001f4d;
    color: rgba(255,255,255,0.85);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    transition: all var(--transicao);
}

.footer-social a:hover {
    background: var(--azul-ciano);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--branco);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--laranja);
}

.footer-links li, .footer-contact li { margin-bottom: 0.75rem; }

.footer-links a, .footer-contact a, .footer-contact span {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: all var(--transicao);
}

.footer-links a:hover {
    color: var(--laranja);
    opacity: 1;
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============================================================
   FAB — Botão flutuante
   ============================================================ */
.fab-orcamento {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem 0.85rem 1rem;
    background: var(--azul-vibrante);
    color: var(--branco);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.45), 0 0 0 0 rgba(0, 102, 255, 0.4);
    z-index: 998;
    transition: all var(--transicao);
    animation: fabOrcamentoPulse 2.8s infinite;
    text-decoration: none;
    white-space: nowrap;
}

.fab-orcamento:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.55);
    background: #0052cc;
}

.fab-orcamento-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.fab-orcamento-status {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--verde-online);
    border: 2px solid var(--azul-vibrante);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
    animation: statusPulse 2s infinite;
}

.fab-orcamento-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

@keyframes fabOrcamentoPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 102, 255, 0.45), 0 0 0 0 rgba(0, 102, 255, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(0, 102, 255, 0.45), 0 0 0 14px rgba(0, 102, 255, 0); }
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 0 5px rgba(37, 211, 102, 0); }
}

/* ============================================================
   BLOG & POST
   ============================================================ */
.blog-hero {
    position: relative;
    padding: 9rem 0 4rem;
    color: var(--branco);
    overflow: hidden;
}

.blog-hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.blog-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,59,149,0.85) 0%, rgba(1,127,176,0.7) 100%);
    z-index: -1;
}

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

.blog-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--branco);
    margin: 1rem 0;
    letter-spacing: -0.02em;
}

.blog-hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.blog-destaque-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.blog-destaque-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    background: var(--branco);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--sombra-lg);
}

.blog-destaque-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.blog-destaque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-destaque-body {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-destaque-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: var(--laranja);
    color: var(--preto);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-destaque-body time {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    margin-bottom: 0.75rem;
    display: block;
}

.blog-destaque-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-destaque-body p {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-hero {
    position: relative;
    padding: 8rem 0 3rem;
    color: var(--branco);
    overflow: hidden;
    min-height: auto;
}

.post-hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.post-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,59,149,0.6) 100%);
    z-index: -1;
}

.post-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.post-back {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color var(--transicao);
}

.post-back:hover { color: var(--laranja); }

.post-hero-content h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--branco);
    margin: 1rem 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    align-items: center;
}

.post-content {
    padding: 4rem 0 6rem;
    background: var(--branco);
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.post-main {
    max-width: 100%;
    min-width: 0;
}

.post-main h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--azul-escuro);
    line-height: 1.3;
}

.post-main h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--azul-escuro);
}

.post-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cinza-escuro);
    margin-bottom: 1.25rem;
}

.post-main ul {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.post-main ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cinza-escuro);
    margin-bottom: 0.5rem;
    list-style: disc;
    padding-left: 0.25rem;
}

.post-main ul li strong { color: var(--preto); }

.post-lead {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--preto) !important;
    border-left: 4px solid var(--laranja);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
}

.post-resumo {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--azul-ciano);
}

.post-resumo h2 {
    margin-top: 0 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

.post-resumo ul { padding-left: 0; }

.post-resumo ul li {
    list-style: none;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.post-resumo ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--azul-ciano);
    font-weight: 700;
}

.post-resumo ul li a {
    color: var(--azul-ciano);
    font-weight: 500;
    transition: color var(--transicao);
}

.post-resumo ul li a:hover { color: var(--laranja); }

.post-destaque {
    background: rgba(1, 127, 176, 0.08);
    border-left: 4px solid var(--azul-ciano);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.75rem 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--cinza-escuro);
}

.post-destaque strong { color: var(--azul-escuro); }

.post-hotel {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-claro);
}

.post-hotel:first-of-type {
    border-top: none;
    padding-top: 0;
}

.post-hotel-header { margin-bottom: 1.25rem; }

.post-hotel-number {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--azul-escuro);
    color: var(--branco);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-hotel-header h2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

.post-hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.post-hotel-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    aspect-ratio: 16/9;
    object-fit: cover;
    max-height: 450px;
}

.post-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.75rem 0;
}

.post-pros-cons .pros,
.post-pros-cons .cons {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.post-pros-cons .pros {
    background: rgba(16, 185, 129, 0.08);
    border-left: 4px solid #10b981;
}

.post-pros-cons .cons {
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid #f59e0b;
}

.post-pros-cons h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--preto);
}

.post-pros-cons ul { padding-left: 0; }

.post-pros-cons ul li {
    list-style: none;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.post-pros-cons .pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.post-pros-cons .cons ul li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 700;
}

.post-ideal {
    background: var(--off-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    font-size: 0.98rem;
    line-height: 1.6;
    border-left: 4px solid var(--laranja);
}

.post-ideal strong { color: var(--azul-escuro); }

.post-table-wrapper {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--sombra-sm);
    -webkit-overflow-scrolling: touch;
}

.post-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--branco);
    min-width: 600px;
}

.post-table th {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.post-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--cinza-claro);
    color: var(--cinza-escuro);
}

.post-table tr:last-child td { border-bottom: none; }
.post-table tr:hover td { background: var(--off-white); }

.post-perfil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0;
}

.post-perfil-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transicao);
    border: 1px solid transparent;
}

.post-perfil-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-md);
    border-color: var(--azul-ciano);
}

.post-perfil-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--azul-escuro);
}

.post-perfil-card p {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    line-height: 1.5;
    margin-bottom: 0;
}

.post-conclusao {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0,59,149,0.05), rgba(1,127,176,0.08));
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(1, 127, 176, 0.15);
}

.post-conclusao h2 {
    color: var(--azul-escuro);
    margin-top: 0 !important;
}

.post-conclusao p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post-conclusao .btn { margin-top: 1.5rem; }

.post-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--azul-escuro);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sidebar-links { padding-left: 0; }

.sidebar-links li {
    margin-bottom: 0.75rem;
    list-style: none;
    padding-left: 1.25rem;
    position: relative;
}

.sidebar-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--azul-ciano);
    font-weight: 700;
}

.sidebar-links a {
    color: var(--azul-ciano);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transicao);
}

.sidebar-links a:hover { color: var(--laranja); }

.sidebar-cta {
    background: var(--azul-escuro);
    color: var(--branco);
}

.sidebar-cta h4 { color: var(--branco); }
.sidebar-cta p { color: rgba(255,255,255,0.85); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE GERAL
   ============================================================ */
@media (max-width: 1200px) {
    :root { --container-max: 960px; }
    .header-nav .nav-list a { padding: 0.5rem 0.75rem; font-size: 0.82rem; }
}

@media (max-width: 992px) {
    :root { --padding-section: 4.5rem 0; }
    .hero { padding: 7rem 0 4rem; }
    .hero-quote-widget-wrapper { margin-top: 3rem; }
    .section-diferenciais { padding-top: 9rem; }
    .blog-destaque-card { grid-template-columns: 1fr; }
    .blog-destaque-body { padding: 2rem; }
    .post-grid { grid-template-columns: 1fr; }
    .post-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .post-perfil-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --padding-section: 3.5rem 0; }
    .container { padding: 0 1rem; }
    .section-header { margin-bottom: 2.5rem; }
    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-badges { gap: 0.5rem; }
    .glass-badge { padding: 0.45rem 0.9rem; font-size: 0.75rem; }
    .hero-quote-widget-wrapper { margin-top: 2.5rem; }
    .section-diferenciais { padding-top: 8rem; }
    .section-title { font-size: 1.65rem; }
    .section-subtitle { font-size: 0.95rem; }
    .wave-divider svg { height: 80px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer { padding-top: 3.5rem; }
    .fab-orcamento { bottom: 1.25rem; right: 1.25rem; padding: 0.75rem 1.1rem 0.75rem 0.9rem; }
    .fab-orcamento-text { font-size: 0.7rem; }
    .fab-orcamento-icon { width: 28px; height: 28px; }
    .blog-hero { padding: 7rem 0 3rem; }
    .blog-hero-content h1 { font-size: 1.75rem; }
    .blog-destaque-body { padding: 1.5rem; }
    .blog-destaque-body h2 { font-size: 1.4rem; }
    .post-hero { padding: 7rem 0 2.5rem; }
    .post-hero-content h1 { font-size: 1.5rem; }
    .post-content { padding: 2.5rem 0 4rem; }
    .post-grid { gap: 2rem; }
    .post-main h2 { font-size: 1.35rem; }
    .post-main p { font-size: 1rem; }
    .post-resumo { padding: 1.5rem; }
    .post-pros-cons { grid-template-columns: 1fr; gap: 1rem; }
    .post-pros-cons .pros, .post-pros-cons .cons { padding: 1.25rem; }
    .post-perfil-grid { grid-template-columns: 1fr; gap: 1rem; }
    .post-conclusao { padding: 1.75rem; }
    .post-table { font-size: 0.82rem; }
    .post-table th, .post-table td { padding: 0.7rem 0.6rem; }
    .post-sidebar { grid-template-columns: 1fr; }
    .faq-question { padding: 1.15rem 1.25rem; font-size: 0.92rem; line-height: 1.4; gap: 0.75rem; }
    .faq-question span { flex: 1; word-break: break-word; hyphens: auto; }
    .faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.88rem; line-height: 1.6; }
    .faq-answer p { margin: 0; color: var(--cinza-escuro); }
    .faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }
    .faq-list { gap: 0.75rem; }
    .faq-item { border-radius: var(--radius-md); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
    .hero-quote-widget { margin-bottom: -3.5rem; }
    .section-diferenciais { padding-top: 7rem; }
    .fab-orcamento { padding: 0.7rem 1rem 0.7rem 0.85rem; gap: 0.5rem; }
    .fab-orcamento-text { font-size: 0.65rem; letter-spacing: 0.05em; }
    .wave-divider svg { height: 60px; }
    .post-hero-content h1 { font-size: 1.35rem; }
    .post-main h2 { font-size: 1.2rem; }
    .post-hotel-image { max-height: 250px; }
    .post-conclusao { padding: 1.5rem; }
    .post-conclusao h2 { font-size: 1.3rem; }
    .faq-question { padding: 1rem 1rem; font-size: 0.88rem; }
    .faq-answer { padding: 0 1rem 1rem; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-ready { opacity: 1; transform: none; }
}

/* ============================================================
   BLOCO FINAL UNIFICADO E OTIMIZADO (SEM DUPLICATAS)
   ============================================================ */

/* 1. SIDEBAR DO BLOG */
.sidebar-cta .btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: var(--azul-vibrante);
    color: var(--branco);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--fonte-principal);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: all var(--transicao);
}
.sidebar-cta .btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* 2. TAGS EM 1 LINHA */
.parque-card-highlight,
.parque-card-tag,
.hotel-tag-conceito,
.pacote-tag,
.pacote-destaque-badge,
.blog-categoria {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
    box-sizing: border-box;
    display: inline-block;
}

/* 3. RODAPÉ EM 1 LINHA NO MOBILE */
@media (max-width: 768px) {
    .footer-bottom { padding: 1rem 0.5rem !important; }
    .footer-bottom p {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.2 !important;
    }
}
@media (max-width: 480px) {
    .footer-bottom p { font-size: 0.7rem !important; }
}

/* 4. BOTÃO "VER DETALHES" DOS HOTÉIS */
.hotel-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}
.hotel-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .hotel-actions {
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1rem;
    }
    .hotel-actions .btn {
        width: 100% !important;
        flex: none;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        box-sizing: border-box;
    }
    .hotel-actions .btn-ghost {
        border: 1.5px solid var(--azul-ciano);
        color: var(--azul-ciano);
        background: transparent;
    }
    .hotel-actions .btn-primary {
        border: 2px solid var(--azul-ciano);
        background: var(--azul-ciano);
        color: var(--branco);
    }
}
@media (max-width: 480px) {
    .hotel-actions .btn { padding: 0.85rem 0.9rem; font-size: 0.85rem; }
    .hotel-actions .btn-ghost { font-size: 0.82rem; }
    .hotel-body { padding: 1.25rem; }
    .hotel-subtitle { font-size: 0.75rem; margin-bottom: 0.65rem; }
    .hotel-body > p { font-size: 0.88rem; line-height: 1.5; margin-bottom: 0.85rem; }
    .hotel-benefits { gap: 0.4rem; margin-bottom: 0.85rem; }
    .hotel-benefits .pill { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
}
.hotel-body {
    display: flex;
    flex-direction: column;
    min-height: auto;
}
.hotel-body > p { flex: 1; margin-bottom: 1rem; }

/* 5. MODAL DE DETALHES DOS HOTÉIS */
.modal-hotel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}
.modal-hotel .modal-content {
    background: var(--branco) !important;
    border-radius: var(--radius-lg) !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 95vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 1.5rem 1.25rem !important;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}
.modal-hotel-header {
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.75rem !important;
    padding-right: 3rem !important;
    border-bottom: 2px solid var(--cinza-claro) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.modal-hotel-header h2 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--azul-escuro) !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    width: 100% !important;
}
.modal-hotel-header p {
    font-size: 0.85rem !important;
    color: var(--azul-ciano) !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
    width: 100% !important;
}
.modal-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: var(--cinza-claro) !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    color: var(--cinza-escuro) !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}
.modal-close:hover {
    background: var(--rosa) !important;
    color: var(--branco) !important;
    transform: rotate(90deg) !important;
}
.hotel-detalhes-tabela {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid var(--cinza-claro) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
.hotel-detalhes-linha {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
    padding: 0.85rem !important;
    border-bottom: 1px solid var(--cinza-claro) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.hotel-detalhes-linha:last-child { border-bottom: none !important; }
.hotel-detalhes-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--azul-escuro) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    word-break: break-word !important;
    width: 100% !important;
}
.hotel-detalhes-valor {
    font-size: 0.88rem !important;
    color: var(--cinza-escuro) !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
    width: 100% !important;
}
.hotel-detalhes-status {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}
.status-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}
.modal-hotel-footer {
    margin-top: 1.25rem !important;
    padding-top: 1.25rem !important;
    border-top: 1px solid var(--cinza-claro) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
@media (max-width: 480px) {
    .modal-hotel { padding: 0.5rem !important; align-items: flex-start !important; padding-top: 1.5rem !important; }
    .modal-hotel .modal-content { padding: 1.25rem 1rem !important; max-height: 98vh !important; border-radius: var(--radius-md) !important; }
    .modal-hotel-header { margin-bottom: 1rem !important; padding-bottom: 0.65rem !important; padding-right: 2.5rem !important; }
    .modal-hotel-header h2 { font-size: 1.15rem !important; }
    .modal-hotel-header p { font-size: 0.8rem !important; }
    .modal-close { width: 32px !important; height: 32px !important; font-size: 1.2rem !important; top: 0.75rem !important; right: 0.75rem !important; }
    .hotel-detalhes-linha { padding: 0.75rem !important; }
    .hotel-detalhes-label { font-size: 0.7rem !important; }
    .hotel-detalhes-valor { font-size: 0.85rem !important; }
}

/* 6. FORMULÁRIO MODERNO (COMPLETO E UNIFICADO) */
.quote-widget-inner {
    background: #003B8F !important;
    border-radius: 28px !important;
    padding: 24px 16px !important;
    box-shadow: 0 20px 60px rgba(0, 59, 143, 0.3) !important;
    width: 100%;
    max-width: 700px !important; /* Limita largura no desktop */
    margin: 0 auto !important; /* Centraliza no desktop */
    box-sizing: border-box;
}
.quote-widget-header {
    text-align: center;
    margin-bottom: 12px !important;
    padding: 0 8px;
}
.quote-widget-header h2 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 12px 0 !important;
}
.quote-form-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.input-pill {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}
.input-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
}
.input-label {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #4A77B5 !important;
    display: block;
    font-family: var(--fonte-principal);
}
.input-text-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
}
.input-icon {
    color: #4A77B5 !important;
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
}
.modern-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--fonte-principal) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #002561 !important;
    outline: none;
    padding: 0;
    margin: 0;
}
.modern-input::placeholder {
    color: #8FA3C7 !important;
    font-weight: 500 !important;
}

/* ✅ CORREÇÃO: Select com quebra de linha segura para mobile */
.modern-select {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--fonte-principal) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #002561 !important;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 0;
    white-space: normal !important; /* PERMITE QUEBRA DE LINHA */
    word-break: break-word !important;
    line-height: 1.3 !important;
    padding: 4px 24px 4px 0 !important;
}
.modern-select option {
    background: #FFFFFF;
    color: #002561;
    font-weight: 600;
}
.input-dropdown .input-text-wrapper {
    align-items: flex-start !important;
    padding-top: 2px;
}

/* ✅ CORREÇÃO: Input de Data clicável */
.modern-input[type="date"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.input-placeholder-text {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #002561 !important;
    pointer-events: none;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* ✅ CORREÇÃO: Dropdown de Hóspedes por cima de tudo */
.input-dropdown {
    position: relative;
    overflow: visible !important;
    z-index: 100 !important;
}
.input-dropdown.active-dropdown {
    z-index: 9999 !important;
}
.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.dropdown-arrow {
    color: #4A77B5 !important;
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.3s ease;
}
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    margin-top: 8px;
    z-index: 10000 !important;
    display: none;
}
.dropdown-panel.show {
    display: block;
}
.dropdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}
.dropdown-row:last-child { border-bottom: none; }
.dropdown-label {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 600;
    font-family: var(--fonte-principal);
}
.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #4A77B5;
    background: #FFFFFF;
    color: #4A77B5;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.counter-btn:hover {
    background: #4A77B5;
    color: #FFFFFF;
}
.counter-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #002561;
    min-width: 24px;
    text-align: center;
    font-family: var(--fonte-principal);
}
.submit-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #007CC2 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: var(--fonte-principal) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 124, 194, 0.3);
    margin-top: 8px;
    width: 100%;
}
.submit-cta:hover {
    background: #006aa5 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.4);
}

/* ✅ CORREÇÃO DEFINITIVA: Fim da linha no mobile + Integração com o formulário */
.wave-divider-7 {
    position: relative;
    z-index: 5;
    margin-top: 1rem !important; /* REDUZIDO: Cola a onda no formulário no desktop */
    margin-bottom: -1px !important;
    line-height: 0;
    overflow: hidden;
    background: #FFFFFF !important;
}

/* TRUQUE DO REMENDO: Cria uma faixa branca de 2px na base para tapar o bug do mobile */
.wave-divider-7::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; 
    background: #FFFFFF; 
    z-index: 10;
}

.wave-divider-7 svg {
    display: block;
    width: 100%;
    height: 120px;
    vertical-align: bottom;
}

.wave-divider-7 path:nth-child(1) { fill: #017fb0; fill-opacity: 0.25; }
.wave-divider-7 path:nth-child(2) { fill: #003B95; fill-opacity: 0.45; }
.wave-divider-7 path:nth-child(3) { fill: #FFFFFF; }

/* Ajustes Mobile: Reduz o espaço branco e o tamanho da onda */
@media (max-width: 768px) {
    .wave-divider-7 {
        margin-top: 0.5rem !important; /* Ainda mais integrado no mobile */
    }
    .wave-divider-7 svg {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .wave-divider-7 svg {
        height: 60px;
    }
}

/* ✅ CORREÇÃO DEFINITIVA E UNIFICADA: Textos em 1 Linha + Espaçamento Ajustado */

/* 1. Força todos os textos a ficarem em 1 linha (sem quebrar) */
.modern-input,
.modern-select,
.input-placeholder-text {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
    box-sizing: border-box;
}

/* 2. Reduz o padding do balão e o espaço entre ícone e texto para caber mais conteúdo */
.input-pill {
    padding: 8px 12px !important;
}

.input-text-wrapper {
    gap: 6px !important;
}

/* 3. Ajustes específicos para WhatsApp e Hotel de Interesse */
.modern-input[type="tel"] { 
    font-size: 0.75rem !important; 
}

.modern-input[type="tel"]::placeholder {
    font-size: 0.72rem !important;
    letter-spacing: -0.02em; /* Aperta as letrinhas para caber o número */
}

.modern-select {
    font-size: 0.75rem !important;
    padding-right: 24px !important;
    letter-spacing: -0.01em;
}

/* 4. Ajustes finos para telas menores (iPhone 12/13/14 - 390px) */
@media (max-width: 393px) {
    .input-pill { padding: 7px 10px !important; }
    .input-text-wrapper { gap: 5px !important; }
    .modern-input[type="tel"]::placeholder { font-size: 0.7rem !important; }
    .modern-select { font-size: 0.72rem !important; }
}

/* 5. Ajustes para telas muito pequenas (iPhone SE, etc - 375px) */
@media (max-width: 375px) {
    .input-pill { padding: 6px 8px !important; }
    .input-text-wrapper { gap: 4px !important; }
    .modern-input[type="tel"]::placeholder { font-size: 0.68rem !important; }
    .modern-select { font-size: 0.7rem !important; }
    .input-icon { width: 14px !important; height: 14px !important; }
}