/* ==================================================== */
/* --- ESTILOS EXCLUSIVOS DA PÁGINA DE TESTEMUNHOS --- */
/* ==================================================== */

/* --- HERO TESTEMUNHOS --- */
.hero-testimonios {
    background-color: var(--bg-cream); 
    padding: 80px 20px 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-testimonios-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonios-pre-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonios-main-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 6vw, 4.5rem); 
    color: var(--green-dark);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-testimonios .ornament {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px;
    margin: 20px 0 30px 0; 
}
.hero-testimonios .line-img { width: 60px; } 
.hero-testimonios .heart-icon { width: 30px; }

.testimonios-desc {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- SEÇÃO DE MURAL E FORMULÁRIO --- */
.seccion-testimonios {
    padding: 20px 0 100px 0;
}

/* Grid dos Cards */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimonio-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.quote-icon {
    width: 35px;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonio-texto {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.testimonio-autor {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
}

/* Formulário de Testemunho */
.form-testimonio-wrapper {
    background-color: #E8EBE3; /* Verde box */
    padding: 50px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-titulo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.form-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.form-testimonio {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #C5C5C5;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: #FFFFFF;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(139, 166, 126, 0.2);
}

.mensaje-exito {
    background-color: var(--green-light);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .form-testimonio-wrapper {
        padding: 40px 20px;
    }
    .testimonios-main-title {
        font-size: 2.5rem;
    }
}