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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.top-banner {
    background-color: #cc0000;
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    width: 100%;
}

.top-banner p {
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.3px;
}

.top-banner strong {
    font-weight: 700;
}

.main-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #111111;
    font-weight: 500;
}

.video-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .top-banner p {
        font-size: 13px;
    }
    .subtitle {
        font-size: 16px;
    }
}

.hide {
    display: none !important;
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.btn {
    display: inline-block;
    width: 100%;
    max-width: 500px; /* Largura um pouco maior conforme o print */
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.btn-green {
    background-color: #3bb33b;
    border-bottom: 5px solid #2d8a2d;
}

.btn-green:hover {
    background-color: #35a335;
}

.btn-red {
    background-color: #8b0000;
    border-bottom: 5px solid #5a0000;
}

.btn-red:hover {
    background-color: #7a0000;
}

.pulse {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Custom Form Styles */
.custom-form-container {
    width: 100%;
    max-width: 500px;
    margin: 40px auto 20px auto;
    font-family: 'Montserrat', sans-serif;
    padding: 0 10px;
}

.form-group {
    margin-bottom: 25px;
    text-align: center;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #0b0c10;
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: #444;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder {
    color: #8391a5;
}

.form-group input:focus {
    border-color: #318231;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 20px;
    background-color: #327d32;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #276627;
}

.success-message {
    margin-top: 20px;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
    padding: 18px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
