@font-face {
    font-family: 'TT Bluescreens';
    src: url('/public/assets/fonts/TT-Bluescreens-Trial-Black-BF63c60fd816b13.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Archivo', sans-serif;
    background-image: url('https://plebiscitopopular.org.br/wp-content/uploads/2025/06/bg-main.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
}

.banner {
    background-color: #157a3f;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.headline {
    position: relative;
    color: #157a3f;
    z-index: 2;
    text-align: center;
}

.headline p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.headline h1 {
    font-family: 'TT Bluescreens', sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: #eabf2f;
}

.headline .sub-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a5959;
    margin-top: 0.5rem;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
    /* padding: 20px; */
    max-width: 1200px;
    margin: 0 auto; /* Centraliza horizontalmente */
}

.logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.text-content {
    flex: 1;
    min-width: 280px;
}

.form-container {
    margin: -50px auto 60px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-top: 6px solid #157a3f;
}

.form-label {
    font-weight: 600;
    color: #111;
}

.form-control:focus {
    border-color: #157a3f;
    box-shadow: 0 0 0 0.2rem rgba(224, 32, 32, 0.25);
}

.btn-primary {
    background-color: #157a3f;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #c01b1b;
}

footer {
    background-color: #eabf2f !important;
    color: #157a3f !important;
    padding: 40px 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto; /* Centraliza conteúdo do rodapé */
}

footer img.logo {
    max-width: 240px;
    height: auto;
}

footer p,
footer a {
    margin: 0;
    font-weight: 600;
    color: #157a3f !important;
    text-decoration: none;
}

.social-icons a {
    font-size: 1.8rem;
    margin: 0 8px;
    color: #157a3f !important;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    color: #e02020;
    transform: scale(1.2);
}

@media (max-width: 576px) {
    .form-container {
    padding: 20px;
    }

    .banner .headline h1 {
    font-size: 2rem;
    }

    .banner .headline p {
    font-size: 1rem;
    }

    .content-container {
    flex-direction: column;
    text-align: center;
    }

    .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    }
    .text-content {
    text-align: center;
    }

    footer .container {
    flex-direction: column !important;
    text-align: center !important;
    }
}