/* ===============================
   Reset base
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   Base
================================ */
html, body {
    width: 100%;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("https://marcos.lafrattajr.com/img/bg-lafrattajr.webp")
        center center / cover no-repeat;
    color: #ffffff;
}

/* ===============================
   Container principal
================================ */
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

/* ===============================
   Logo
================================ */
.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 16px;
}

/* ===============================
   Headings
================================ */
.headline {
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 400;
    margin-bottom: 6px;
}

h2 {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

/* ===============================
   Texto SEO
================================ */
.seo-text {
    max-width: 720px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 20px 0 28px;
    opacity: 0.9;
}

/* ===============================
   Botões
================================ */
.buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* WhatsApp */
.btn.whatsapp {
    background-color: #3C5A4B;
}

.btn.whatsapp:hover {
    background-color: #2f463a;
}

/* Site */
.btn.site {
    background-color: #B46B4E;
}

.btn.site:hover {
    background-color: #9e5d43;
}

/* ===============================
   Rodapé legal
================================ */
.legal {
    margin-top: 32px;
    font-size: 0.75rem;
    opacity: 0.75;
}

.legal a {
    color: #ffffff;
    text-decoration: underline;
}

/* ===============================
   Responsividade
================================ */
@media (max-width: 360px) {
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Telas baixas (mobile real) */
@media (max-height: 600px) {
    .container {
        justify-content: flex-start;
        padding-top: 56px;
    }

    .seo-text {
        margin: 16px 0 22px;
    }
}
