/* ==========================================================
   HORIZONTE TRAVEL — Site em Construção
   Paleta:
     Vermelho:    #ff0000
     Azul 1:      #064f89
     Azul 2:      #064a80
     Cinza:       #355269
     Branco:      #ffffff
     Fundo claro: #f8f6f6
   ========================================================== */

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

:root {
    --vermelho:      #ff0000;
    --azul-1:        #064f89;
    --azul-2:        #064a80;
    --cinza:         #355269;
    --branco:        #ffffff;
    --fundo-claro:   #f8f6f6;
    --vermelho-soft: rgba(255, 0, 0, 0.08);
    --vermelho-bord: rgba(255, 0, 0, 0.35);
}

html, body { height: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cinza);
    background: var(--fundo-claro);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ===== Fundo decorativo (manchas sutis) ===== */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(6, 79, 137, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ===== Avião animado (vermelho) ===== */
.aviao {
    position: absolute;
    top: 18%;
    left: -100px;
    width: 60px;
    height: 60px;
    opacity: 0.85;
    animation: voar 18s linear infinite;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.25));
}

@keyframes voar {
    0%   { transform: translate(0, 0) rotate(-5deg); }
    50%  { transform: translate(50vw, -30px) rotate(-5deg); }
    100% { transform: translate(110vw, 20px) rotate(-5deg); }
}

/* ===== Header ===== */
header {
    padding: 2rem 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeDown 1s ease-out;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--azul-2);
}

.logo svg { width: 36px; height: 36px; }
.logo .accent { color: var(--vermelho); }

/* ===== Conteúdo principal ===== */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 780px;
    text-align: center;
    animation: fadeUp 1.2s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--vermelho-soft);
    border: 1px solid var(--vermelho-bord);
    border-radius: 50px;
    color: var(--vermelho);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--azul-2);
}

h1 .destaque {
    color: var(--vermelho);
    font-style: italic;
}

.subtitulo {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cinza);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ===== Countdown ===== */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tempo {
    background: var(--branco);
    border: 1px solid rgba(6, 79, 137, 0.12);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    min-width: 95px;
    box-shadow: 0 4px 16px rgba(53, 82, 105, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tempo:hover {
    transform: translateY(-4px);
    border-color: var(--vermelho);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.12);
}

.tempo .numero {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--vermelho);
    line-height: 1;
    display: block;
}

.tempo .label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azul-1);
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

/* ===== Contato ===== */
.contato {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contato a {
    color: var(--cinza);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contato a:hover { color: var(--vermelho); }
.contato svg { width: 18px; height: 18px; }

/* ===== Redes sociais ===== */
.redes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.redes a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--branco);
    border: 1px solid rgba(6, 79, 137, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(53, 82, 105, 0.06);
}

.redes a:hover {
    background: var(--vermelho);
    border-color: var(--vermelho);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.redes svg { width: 18px; height: 18px; }

/* ===== Footer ===== */
footer {
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--cinza);
    background: var(--branco);
    border-top: 1px solid rgba(6, 79, 137, 0.1);
    position: relative;
    z-index: 2;
}

/* ===== Animações ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Responsivo ===== */
@media (max-width: 480px) {
    .tempo { min-width: 75px; padding: 1rem 0.5rem; }
    .tempo .numero { font-size: 1.8rem; }
    .contato { flex-direction: column; gap: 0.75rem; }
    header { padding: 1.5rem 1rem 0; }
}