/* =========================
   SEC-SOBRE-EVENTOS
   ========================= */

.sec-sobre-eventos {
    padding: 80px 0;
    background-color: var(--white);
}

.sobre-eventos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre-eventos-body {
    display: flex;
    flex-direction: column;
}

.sobre-eventos-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.sobre-eventos-text p {
    margin-bottom: 0;
}

.sobre-eventos-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 30px;
}

.sobre-eventos-whatsapp {
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sobre-eventos-whatsapp:hover {
    background: #1aab52;
    color: #fff;
}

.sobre-eventos-divider {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--quarternary);
    margin-top: 24px;
    border-radius: 2px;
}

.sobre-eventos-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ── Responsivo ─────────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
    .sobre-eventos-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-eventos-img {
        order: -1;
    }
}

@media (max-width: 575px) {
    .sec-sobre-eventos {
        padding: 60px 0;
    }
}

/* =========================
   SEC-CTA
   ========================= */

.sec-cta {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.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 h1 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.sec-cta .cta-text p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .sec-cta {
        height: 650px;
    }

    .sec-cta .cta-text h1 {
        font-size: 1.8rem;
    }
}


/* =========================
   SEC-TIPOS-EVENTOS
   ========================= */

.sec-tipos-eventos {
    padding: 80px 0 112px;
    background-color: #f8f7f4;
}

.tipos-eventos-title {
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary);
}

.tipos-eventos-title h1{
    font-size: 1.4rem;
    font-weight: 600;
}

.tipos-eventos-title p {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ── Card ───────────────────────────────────────────────────────────────────── */

.tipo-evento-card {
    padding: 0 16px;
}

.tipo-evento-card__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 20px;
}

.tipo-evento-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tipo-evento-card:hover .tipo-evento-card__img img {
    transform: scale(1.04);
}

.tipo-evento-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.tipo-evento-card__text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.tipo-evento-card__text p {
    margin-bottom: 0;
}

/* ── Slick overrides ────────────────────────────────────────────────────────── */

.sec-tipos-eventos .slick-prev,
.sec-tipos-eventos .slick-next {
    color: var(--primary);
    z-index: 2;
    font-size: 20px;
}

.sec-tipos-eventos .slick-prev { left: -36px; }
.sec-tipos-eventos .slick-next { right: -36px; }

.sec-tipos-eventos .slick-dots {
    bottom: -52px;
}

.sec-tipos-eventos .slick-dots li{
    margin: 0;
}

.sec-tipos-eventos .slick-dots li button, .sec-tipos-eventos .slick-dots li button:before{
    height: 8px;
}

.sec-tipos-eventos .slick-dots li button::before {
    content: '';
    background-color: var(--primary);
    opacity: 1;
}

.sec-tipos-eventos .slick-dots li.slick-active button::before {
    background-color: var(--secondary);
}

@media (max-width: 575px) {
    .sec-tipos-eventos {
        padding: 60px 0 96px;
    }

    .sec-tipos-eventos .slick-prev { left: -20px; }
    .sec-tipos-eventos .slick-next { right: -20px; }
}

/* ── SEC FORM ────────────────────────────────────────────────────────── */

.sec-form {
    padding: 80px 0;
    background: url("../img/bg-form-event.png") no-repeat center/cover;
}

.sec-form-header {
    text-align: center;
    margin: 0 auto 60px;
}

.sec-form-header h1 {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.sec-form-header p {
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.3;
    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;
    -webkit-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(--white);
    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-CTA-2
   ========================= */

.sec-cta-2 {
    position: relative;
    padding: 100px 0 250px;
    overflow: hidden;
}

.sec-cta-2 .cta-2-content {
    display: flex;
    align-items: center;
}

.sec-cta-2 .cta-2-body {
    margin-left: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-2-title {
    color: #fff;
}

.cta-2-title p,
.cta-2-title h1,
.cta-2-title h2,
.cta-2-title h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}

.cta-2-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.65;
}

.cta-2-text p {
    margin: 0;
}

.sec-cta-2 .social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0px 0 20px;
}

.sec-cta-2 .social-links a {
    color: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.sec-cta-2 .social-links a:hover {
    color: #fff;
}

.sec-cta-2 .social-links svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

@media (max-width: 991px) {
    .sec-cta-2 .cta-2-body {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .sec-cta-2 {
        min-height: unset;
        padding: 320px 0 60px;
    }

    .sec-cta-2 .cta-2-content {
        position: relative;
        inset: unset;
    }

    .sec-cta-2 .cta-2-body {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    .cta-2-title p,
    .cta-2-title h1,
    .cta-2-title h2,
    .cta-2-title h3 {
        font-size: 1.5rem;
    }
}
/* iOS auto-zoom fix — força 16px no mobile (iOS faz auto-zoom em <16px). */
@media (max-width: 768px) {
    .sec-form-fields .fv-field input,
    .sec-form-fields .fv-field select,
    .sec-form-fields .fv-field textarea {
        font-size: 16px;
    }
}
