:root {
    --primary-burgundy: #6A0B2C;
    --accent-gold-antique: #B8860B; 
    --dark-text: #333333;
    --bg-white: #FFFFFF;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--bg-white);
}

body {
    background-image: url('nectarfy.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000; /* Fundo preto para preencher o espaço */
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay escuro para legibilidade */
    z-index: 1;
}

main.container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.content-wrapper {
    background-color: rgba(0, 0, 0, 0.3); /* Fundo sutilmente translúcido */
    padding: 2rem 3rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold-antique) !important;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.manifesto {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
}

.form-title {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold-antique);
    font-weight: 600;
}

.form-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
}

.subscription-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    padding: 0.75rem 1rem;
}

.subscription-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscription-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.5); /* Sombra dourada no foco */
    border-color: var(--accent-gold-antique);
}

.btn-burgundy {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-burgundy:hover {
    background-color: #5A0926;
    border-color: #5A0926;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem;
    }
    .brand-name {
        font-size: 2.5rem;
    }
    .main-title {
        font-size: 2rem;
    }
    .manifesto {
        font-size: 1rem;
    }
    .input-group {
        flex-direction: column;
    }
    .input-group .form-control {
        border-radius: 0.375rem !important;
        margin-bottom: 0.5rem;
        /* MELHORIA 1: Garante que o input ocupe 100% da largura no mobile */
        width: 100%;
    }
    .input-group .btn {
        width: 100%;
        border-radius: 0.375rem !important;
    }
}

.form-group-hp {
    display: none;
}

