.titulo-decorado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px;
}

.linha {
    height: 6px; 
    background: none;
    border: none;
    position: relative;
    flex: 1;
    margin: 0 20px;
}
  
.linha::before,
.linha::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #aaa;
}

.linha::before {
    top: 0; 
}

.linha::after {
    bottom: 0; 
}


.highlight-section, .styles-section, .testimonials-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--bg);
}

.highlight-section h2,
.styles-section h2,
.testimonials-section h2 {
    font-family: 'Caveat', 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.5rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.style-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.style-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.style-box h3 {
    padding: 1rem;
    color: var(--primary);
}

.testimonialsWrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    min-height: 425px;
    margin: 0 auto;
}

.testimonial-pair{
    /* display: flex;
    flex-direction: column;
    gap: 2rem; */

    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-pair.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}


.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-style: italic;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--primary);
}

.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.arrow {
  background: white;
  color: var(--primary);
  border: none;
  background: transparent;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  transform: scale(1.1);
}

.arrow:active {
  transform: scale(0.95);
}



/* :root {
  --primary: #8e44ad;      
  --primary-dark: #5e3370;  
} */




