/* ==========================================================================
   LP Vocacional Franciscanos - estilos base
   ========================================================================== */
:root {
    --color-dark-green: #084030;
    --color-cream: #F2F2DF;
    --color-gold: #A69646;
    --color-gold-light: #b3a352;
    --color-error: #4d1414;

    --font-handsome: "handsome-pro", sans-serif;
    --font-rubik: "rubik", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-rubik);
    background-color: var(--color-cream);
    color: var(--color-dark-green);
    overflow-x: hidden;
}

/* Visível para leitores de tela, invisível na tela. */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Foco sempre visível para navegação por teclado. */
:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* ==========================================================================
   Bloco 1: Hero
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;

    background-image: url('../img/bg-hero.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

/* dvh acompanha a barra de endereço do mobile e evita o "pulo" ao rolar. */
@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
    }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
}

.hero-mote {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin-top: -10vh;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: var(--color-cream);
}

/* ==========================================================================
   Bloco 2: Discernimento
   ========================================================================== */
.discernimento-section {
    background-color: var(--color-cream);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.container-center {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.discernimento-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-green);
    line-height: 1.4;
}

.discernimento-section p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-dark-green);
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-gold);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Bloco 3: Quem são os Frades
   ========================================================================== */
.quem-somos-section {
    background-color: var(--color-dark-green);
    color: var(--color-cream);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.quem-somos-title {
    font-family: var(--font-handsome);
    font-size: 4rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

.quem-somos-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 950px;
}

/* O desconto de 14px compensa o gap para as 3 imagens fecharem a linha. */
.galeria-img {
    width: calc(33.333% - 14px);
    max-width: 300px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quem-somos-text {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.quem-somos-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-cream);
}

.quem-somos-subtitle {
    color: var(--color-gold) !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
}

/* ==========================================================================
   Bloco 4: Etapas da formação (timeline em acordeão)
   ========================================================================== */
.etapas-section {
    background-color: var(--color-cream);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.etapas-title {
    font-family: var(--font-handsome);
    font-size: 4rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 70px;
}

.etapas-cta {
    margin-top: 40px;
}

.timeline {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

/* Linha vertical que conecta as etapas; alinhada ao centro das bolinhas. */
.timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 30px;
    left: 22px;
    width: 2px;
    background-color: rgba(166, 150, 70, 0.3);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.timeline-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background-color: var(--color-gold);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-handsome);
    font-size: 2rem;
    padding-top: 5px; /* Ajuste óptico da fonte cursiva */
    margin-right: 25px;
    /* O anel na cor do fundo "corta" a linha vertical atrás da bolinha. */
    box-shadow: 0 0 0 10px var(--color-cream);
}

.timeline-content {
    padding-top: 5px;
    text-align: left;
    width: calc(100% - 71px);
}

.timeline-titulo {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

/* O cabeçalho é um <button> para abrir por teclado; reset do visual nativo. */
.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0 0 10px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-icon {
    font-size: 0.9rem;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* grid-template-rows anima de 0 a auto, o que height sozinho não faz. */
.timeline-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-body-inner {
    overflow: hidden;
    text-align: center;
}

.timeline-body-inner p {
    font-size: 1.05rem;
    color: var(--color-dark-green);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}

.timeline-body-inner.video-only {
    padding-top: 10px;
}

.timeline-body-inner.video-only .video-container {
    margin-top: 0;
}

.video-container {
    width: 100%;
    max-width: 260px;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px auto 25px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--color-dark-green);
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    border-radius: 20px;
}

/* Estados do acordeão aberto */
.timeline-item.active .timeline-body {
    grid-template-rows: 1fr;
}

.timeline-item.active .toggle-icon {
    transform: rotate(180deg);
}

.timeline-item.active .timeline-number {
    background-color: var(--color-gold-light);
    transform: scale(1.1);
}

.sub-etapa {
    margin-top: 20px;
}

.sub-etapa h4 {
    font-size: 1.05rem;
    color: var(--color-dark-green);
    font-weight: 700;
    margin-bottom: 6px;
}

/* ==========================================================================
   Bloco 5: Testemunhos
   ========================================================================== */
.testemunhos-section {
    background-color: var(--color-dark-green);
    padding: 100px 20px 120px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.testemunhos-title {
    font-family: var(--font-handsome);
    font-size: 4rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 100px; /* Abre espaço para as fotos que sobem dos cards */
}

.testemunhos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
}

.testemunho-card {
    background-color: var(--color-cream);
    border-radius: 40px;
    padding: 0 35px 45px 35px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    position: relative;
    margin-top: 65px; /* Compensa a foto que vaza para fora do card */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* A margem negativa é metade da altura: deixa a foto meio dentro, meio fora. */
.testemunho-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-top: -65px;
    margin-bottom: 20px;
    object-fit: cover;
}

.img-franklin {
    object-position: center 20%;
}

.img-valdir {
    object-position: center 15%;
}

.img-leandro {
    object-position: center 10%;
}

.img-bruno {
    object-position: center 15%;
}

.testemunho-nome {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.testemunho-texto {
    font-size: 0.95rem;
    color: var(--color-dark-green);
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

/* ==========================================================================
   Bloco 6: Formulário de contato
   ========================================================================== */
/* As três faixas de cor fazem o card dourado "vazar" entre as duas seções. */
.contato-section {
    background: linear-gradient(
        to bottom,
        var(--color-dark-green) 0%,
        var(--color-dark-green) 20%,
        var(--color-cream) 20%,
        var(--color-cream) 85%,
        var(--color-dark-green) 85%,
        var(--color-dark-green) 100%
    );
    padding: 40px 20px 80px 20px;
    display: flex;
    justify-content: center;
}

.form-card {
    background-color: var(--color-gold);
    border-radius: 40px;
    padding: 60px 80px;
    width: 100%;
    max-width: 950px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    color: var(--color-cream);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.form-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-cream);
    border: none;
    margin: 20px auto 40px auto;
    opacity: 0.8;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: var(--color-cream);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 16px 25px;
    color: var(--color-cream);
    font-family: var(--font-rubik);
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

/* Campo de texto longo: ocupa a linha inteira do grid de duas colunas. */
.form-group-full {
    grid-column: 1 / -1;
}

/*
 * O raio de 50px é pensado para campos de uma linha; num bloco de texto ele
 * comeria os cantos das primeiras e últimas linhas. 24px mantém a mesma
 * linguagem visual sem prejudicar a leitura.
 */
.form-group textarea {
    border-radius: 24px;
    min-height: 130px;
    line-height: 1.55;
    resize: vertical;
}

.form-group textarea::placeholder {
    color: rgba(242, 242, 223, 0.7);
}

/* Contador de caracteres, discreto e alinhado ao canto do campo. */
.form-contador {
    align-self: flex-end;
    margin-top: 6px;
    padding-right: 8px;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(242, 242, 223, 0.65);
    transition: color 0.3s ease;
}

.form-contador.no-limite {
    color: var(--color-error);
    font-weight: 700;
}

/* Seta do select desenhada em SVG inline para acompanhar a paleta. */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2F2DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder {
    color: rgba(242, 242, 223, 0.7);
}

.form-group select option {
    background-color: var(--color-gold);
    color: var(--color-cream);
}

/* Esconde as setinhas do input number, que quebram o formato de pílula. */
.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* O autofill do Chrome pinta o fundo de branco e apaga o texto creme. */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-cream);
    -webkit-box-shadow: 0 0 0 1000px #9c8c3f inset;
    caret-color: var(--color-cream);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Feedback de validação -------------------------------------------------- */

/* A borda já é 2px transparente, então marcar o erro não desloca o layout. */
.form-group input.invalido,
.form-group select.invalido,
.form-group textarea.invalido {
    border-color: var(--color-error);
    background-color: rgba(77, 20, 20, 0.12);
}

.form-erro {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: var(--color-error);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 22px;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.form-erro.visivel {
    max-height: 60px;
    margin-top: 8px;
}

.form-erro-bloco {
    margin-top: -25px;
    padding-left: 37px;
}

.form-erro-bloco.visivel {
    margin-bottom: 20px;
}

/* Campo-armadilha: bots preenchem, humanos nunca veem. */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Checkbox de privacidade ------------------------------------------------ */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: var(--color-dark-green);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    color: var(--color-cream);
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-checkbox input[type="checkbox"].invalido {
    border-color: var(--color-error);
}

.form-checkbox label {
    color: var(--color-cream);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

/* Botão enviar ----------------------------------------------------------- */
.form-submit {
    text-align: center;
}

.btn-submit {
    background-color: var(--color-dark-green);
    color: var(--color-cream);
    border: none;
    padding: 16px 60px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-rubik);
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(8, 64, 48, 0.3);
    background-color: #0b5943;
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.btn-submit:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

/* ==========================================================================
   Avisos flutuantes (sucesso e erro do formulário)
   ========================================================================== */
.toast {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 40px);
    max-width: 460px;
    padding: 18px 24px;
    border-radius: 18px;
    background-color: var(--color-dark-green);
    color: var(--color-cream);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);

    /* Fora da tela e inerte até o JS mostrar. */
    transform: translate(-50%, -140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.35s ease,
                visibility 0.35s ease;
}

.toast.visivel {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.toast::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    font-size: 1rem;
}

.toast.sucesso {
    background-color: var(--color-gold);
    color: #ffffff;
}

.toast.sucesso::before {
    content: '✓';
    background-color: var(--color-dark-green);
    color: var(--color-cream);
}

/* ==========================================================================
   Bloco 7: Rodapé
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-green);
    color: var(--color-cream);
    padding: 60px 20px 40px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.footer-social p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-cream);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    transform: scale(1.1) translateY(-4px);
    background-color: var(--color-gold-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

.footer-info {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-cream);
}

.footer-info p {
    margin: 0;
}

.footer-info strong {
    font-weight: 700;
}

.footer-info a {
    color: var(--color-gold);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
body.loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark-green);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(0.95); opacity: 0.8; }
    50%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        background-position: 65% bottom; /* Mantém os frades enquadrados */
    }

    .hero-mote {
        max-width: 400px;
    }

    .testemunho-card {
        width: calc(50% - 15px);
    }

    .form-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        align-items: flex-start;
        padding-top: 15vh;
        background-position: 70% bottom;
    }

    .hero-container {
        justify-content: center;
    }

    .hero-mote {
        max-width: 85%;
        margin-top: 0;
    }

    /* Discernimento */
    .discernimento-section {
        padding: 70px 20px;
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Quem somos */
    .quem-somos-title {
        font-size: 3rem;
    }

    .quem-somos-gallery {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .galeria-img {
        width: 100%;
        max-width: 320px;
    }

    /* Etapas */
    .etapas-title {
        font-size: 3rem;
    }

    .timeline-item {
        margin-bottom: 35px;
    }

    .timeline-header {
        font-size: 1.05rem;
    }

    /* Testemunhos */
    .testemunhos-title {
        font-size: 3rem;
    }

    .testemunhos-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .testemunho-card {
        width: 100%;
        max-width: 380px;
        margin-top: 60px;
    }

    /* Formulário */
    .form-card {
        padding: 40px 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-erro-bloco {
        margin-top: -30px;
    }

    .btn-submit {
        width: 100%;
        max-width: 350px;
    }

    /* Rodapé */
    .site-footer {
        padding: 50px 20px 30px 20px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }

    .footer-info {
        font-size: 0.8rem;
    }

    /* Toast */
    .toast {
        top: 16px;
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    /* As quebras manuais são pensadas para desktop; no mobile o texto flui. */
    .discernimento-section h2 br,
    .discernimento-section p br,
    .quem-somos-title br,
    .quem-somos-text p br,
    .etapas-title br,
    .timeline-content p br,
    .testemunhos-title br,
    .form-title br,
    .form-checkbox label br {
        display: none;
    }
}
