/* =========================
   SEC-FORM (Formulário Evento)
   ========================= */

.sec-form {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.sec-form-header {
    text-align: center;
    margin: 0 auto 60px;
}

.sec-form-header h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 6px;
}

.sec-form-header p {
    color: var(--primary);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.sec-form-img {
    padding-left: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Campos do formulário */
.sec-form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 80px 0 100px;
}

/* Campo wrapper */
.sec-form-fields .fv-field {
    position: relative;
}

.sec-form-fields .fv-field input,
.sec-form-fields .fv-field select,
.sec-form-fields .fv-field textarea {
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 0;
    background: #fff;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--primary);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: none;
}

.sec-form-fields .fv-field input::placeholder,
.sec-form-fields .fv-field textarea::placeholder {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.sec-form-fields .fv-field input:focus,
.sec-form-fields .fv-field select:focus,
.sec-form-fields .fv-field textarea:focus {
    border-color: var(--primary);
}

.sec-form-fields .fv-field input.fv-error,
.sec-form-fields .fv-field select.fv-error,
.sec-form-fields .fv-field textarea.fv-error {
    border-color: #f87171;
}

.sec-form-fields .fv-error-msg {
    display: none;
}

/* Select com chevron */
.sec-form-fields .fv-field--select select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
    color: var(--primary);
}

.sec-form-fields .fv-field--select select option[value=""] {
    color: var(--primary);
    font-weight: 700;
}

/* Textarea */
.sec-form-fields .fv-field textarea {
    resize: none;
}

/* Botão */
.sec-form-fields .btn {
    max-width: 200px;
    font-size: 0.9rem;
}

/* Checkbox consent */
.ev-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-top: 4px;
}

.ev-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.ev-consent span {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ev-consent.fv-error span {
    color: #f87171;
}

/* Feedback */
.ev-feedback {
    font-size: 0.85rem;
}

.ev-feedback:empty {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .sec-form {
        padding: 60px 0 40px;
    }

    .sec-form-fields {
        padding: 0;
    }

    .sec-form-header {
        margin-bottom: 40px;
    }

    .sec-form-img{
        padding: 40px 0 0;
    }
}

/* =========================
   SEC-CONTACTS
   ========================= */

.sec-contacts {
    --container-max: 1200px;
    padding: 60px 0;
    background-color: var(--white);
}

.contacts-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: stretch;
    background-color: var(--tertiary);
    text-decoration: none;
    min-width: 220px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: var(--primary);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 22px;
    background-color: var(--primary);
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 24px;
    gap: 3px;
}

.contact-card-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-card-value {
    color: var(--light-gray);
    font-size: 0.98rem;
}

@media (max-width: 576px) {
    .sec-contacts{
        --container-px-mobile: 15px;
        padding-top: 40px;
    }

    .contact-card {
        min-width: 100%;
        max-width: 100%;
    }

    .contact-card-icon{
        padding: 20px;
    }

    .contact-card-body{
        padding: 16px 14px;
    }

    .contact-card-value{
        font-size: 0.76rem;
    }
}

/* =========================
   SEC-CTA (Contato)
   ========================= */

.sec-cta {
    position: relative;
    overflow: hidden;
    height: 700px;
}

.sec-cta .cta-content {
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.sec-cta .cta-signature {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.sec-cta .cta-text {
    color: var(--white);
    max-width: 1200px;
}

.sec-cta .cta-text p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .sec-cta {
        height: 420px;
    }

    .sec-cta .cta-text {
        font-size: 0.95rem;
        padding: 0 16px;
    }
}

/* =========================
   SEC-ADDRESS
   ========================= */

.sec-address {
    background-color: var(--white);
}

.address-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 80px;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.address-text i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.address-map {
    width: 100%;
    line-height: 0;
}

.address-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .address-text{
        padding: 40px 0;
    }

    .address-map iframe {
        height: 260px;
    }
}