﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(180deg, #f5f0eb 0%, #e8dcc8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #3a3228;
}

/* ── Barra superior com logo ── */
header {
    background: url('/img/background_logotipo.png') repeat;
    padding: 20px 40px;
    border-bottom: 1px solid #e0d5c7;
    text-align: center;
}

.logo-header {
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    gap: 4px;
}

    .logo-header img {
        width: 180px;
    }

.logo-icon {
    margin-bottom: 4px;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3a3228;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #a8957f;
    text-transform: uppercase;
}

/* ── Conteúdo principal ── */
main {
    background-image: url('/img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos de fundo */
.decoration {
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
}

.plant-left {
    bottom: 10%;
    left: 5%;
    width: 120px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><path d="M50 150 Q40 120 35 90 Q30 60 40 30 M50 150 Q60 120 65 90 Q70 60 60 30" stroke="%23a8957f" stroke-width="2" fill="none"/><circle cx="30" cy="40" r="8" fill="%23a8957f"/><circle cx="70" cy="35" r="8" fill="%23a8957f"/></svg>') no-repeat center;
    background-size: contain;
}

.fabric-right {
    top: 15%;
    right: 3%;
    width: 100px;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 149, 127, 0.2) 50%, transparent 100%);
    border-radius: 50%;
}

/* ── Card "Em Breve" ── */
.coming-soon-card {
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    max-width: 520px;
    width: 100%;
    height: 100%;
    box-shadow: 0 16px 48px rgba(90, 70, 50, 0.2);
    position: relative;
    z-index: 10;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #3a3228;
}

.card-icon-main {
    width: 60px;
    height: 60px;
    margin: 24px auto;
    opacity: 0.7;
}

/* ── Grid de features ── */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0 28px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #5a5a5a;
    text-transform: capitalize;
    line-height: 1.3;
}

h1 {
    font-size: 40px;
    color: #4F5D2F;
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
    color: #6B7D3A;
    margin-bottom: 25px;
    font-weight: normal;
}

p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4F5D2F;
}

.highlight {
    color: #6B7D3A;
    font-weight: bold;
}

/* ── Responsividade ── */
@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    main {
        background-image: url('/img/background_mobile.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px 16px;
    }

    .coming-soon-card {
        max-width: 100%;
        padding: 40px 24px 32px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .features {
        gap: 16px;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .plant-left {
        width: 80px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
    }

    .logo-icon {
        width: 120px;
    }

    .logo-main {
        font-size: 0.95rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    main {
        padding: 12px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .coming-soon-card {
        padding: 12px;
        border-radius: 12px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .card-icon-main {
        width: 48px;
        height: 48px;
        margin: 16px auto;
    }

    .features {
        gap: 12px;
        margin: 24px 0 20px;
    }

    .feature-label {
        font-size: 0.7rem;
    }

    .btn-send {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .plant-left,
    .fabric-right {
        display: none;
    }

    h1 {
        font-size: 24px;
        color: #4F5D2F;
        margin-bottom: 12px;
    }

    p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .logo-header {
        display: flex;
        /*flex-direction: column;*/
        align-items: center;
        gap: 4px;
    }

        .logo-header img {
            width: 120px;
        }
}
