/* ================================================
   Smart Planning — Em Construção
   Fonts: Red Hat Display (Google Fonts)
   ================================================ */

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

html {
    height: 100%;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #334a85;
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* ---------- Page Layout ---------- */
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    padding: 6vh 24px 4vh;
    text-align: center;
    gap: 40px;
}

/* ---------- Hero Section ---------- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

/* Traffic cone */
.cone-img {
    width: 150px;
    height: auto;
    display: block;
}

/* Main title */
.headline {
    font-size: clamp(2rem, 7vw, 3.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 4px;
}

/* Subtitle lines */
.subline {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* "Entre em contato" label */
.contact-prompt {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 6px;
}

/* Email button */
.contact-btn {
    display: inline-block;
    padding: 13px 32px;
    background-color: #2a3d6e;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
}

.contact-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
    border-radius: 8px;
}

/* ---------- Footer ---------- */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
}

/* Logo SVG — scales responsively */
.logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
}

/* Bottom URL */
.footer-url {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.04em;
}

/* ---------- Responsive — small screens ---------- */
@media (max-width: 480px) {
    .page {
        padding: 44px 20px 32px;
        gap: 32px;
    }

    .logo {
        max-width: 260px;
    }
}

/* ---------- Responsive — large screens ---------- */
@media (min-width: 1200px) {
    .page {
        padding: 8vh 24px 6vh;
    }
}
