/* Carousel styles moved to css/quem-somos.css */


:root {
  --cinza: #666;
  --bege-claro: #f8f4f0;
  --verde-transparente: rgba(142, 177, 153, 0.2);
}

/* Estilos do seletor de fragrância movidos para css/seletor-fragrancia.css */

/* Seção de Feedbacks */
.feedbacks-section {
    padding: 80px 0;
    background: white;
}
.feedbacks-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.feedback-carousel {
    overflow: hidden;
    position: relative;
    cursor: default;
}
.feedback-cards {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
    padding: 20px 0;
    will-change: transform;
}
.feedback-cards.grabbing {
    cursor: grabbing;
    transition: none;
}
.feedback-cards.hidden {
    display: none;
}

/* ==================== CARDS MAIS COMPACTOS ==================== */
.feedback-card {
    flex: 0 0 calc(33.333% - 20px);        /* largura mantida exatamente como estava */
    background: white;
    border-radius: 16px;
    padding: 20px;                         /* era 30px → reduzido */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Ícone de origem (Google, WhatsApp etc) */
.feedback-icon {
    position: absolute;
    top: 14px;      /* era 20px */
    right: 14px;    /* era 20px */
    width: 28px;    /* era 32px */
    height: 28px;   /* era 32px */
}
.feedback-icon img {
    width: 16px;    /* era 20px */
    height: 16px;
}

/* Header com avatar + nome/data */
.feedback-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;          /* era 15px */
    margin-bottom: 12px; /* era 15px */
}
.client-avatar {
    width: 40px;        /* era 50px */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
}
.client-info {
    flex: 1;
}
.client-name {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
    font-size: 1em;         /* era 1.1em */
    line-height: 1.2;
}
.feedback-date {
    color: #718096;
    font-size: 0.82em;      /* era 0.9em */
}

/* Estrelas */
.stars {
    display: flex;
    gap: 3px;
    margin: 8px 0;          /* era 10px */
}
.star {
    color: #FFD700;
    font-size: 1.05em;      /* era 1.2em */
}

/* Texto do depoimento */
.feedback-text {
    color: #4a5568;
    line-height: 1.55;
    font-style: italic;
    font-size: 0.92em;      /* ligeira redução para caber melhor */
    margin-top: 10px;       /* era 15px */
}

/* Navegação do carrossel (mantida) */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8eb199;
    background: white;
    color: #8eb199;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.nav-button:hover {
    background: #8eb199;
    color: white;
}
.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsivo – mobile continua mostrando 1 card por vez */
@media (max-width: 768px) {
    .feedback-card {
        flex: 0 0 calc(100% - 20px);
        padding: 18px;               /* um pouco menor ainda no mobile */
    }
    .client-avatar {
        width: 38px;
        height: 38px;
    }
    .feedback-cards {
        gap: 20px;
    }
}