.form-control {
    font-size: 1.5rem !important;
}

.modal-whatsapp__body {
    background-image: url('../img/bg-whats.png');
    background-size: cover;
}

/* ============================================================
   DEPOIMENTOS - Google Style Carousel
   ============================================================ */

.depoimentos-section {
    background: #f8f9fa;
    padding: 72px 0 64px;
}

.depoimentos-section__title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #661863;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.25;
}

/* Badge "Avaliações do Google" */
.depoimentos-section__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 40px;
}

.depoimentos-section__google-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.depoimentos-section__google-label {
    font-size: .75rem;
    color: #5f6368;
    letter-spacing: .3px;
}

.depoimentos-section__google-name {
    font-size: 1rem;
    font-weight: 700;
    color: #202124;
}

.depoimentos-section__google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid #e0e0e0;
    padding-left: 16px;
}

.depoimentos-section__rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.depoimentos-section__stars {
    display: flex;
    gap: 2px;
}

/* ── Carousel container ──────────────────────────────── */
.depoimentos-carousel {
    position: relative;
}

.depoimentos-track-wrapper {
    overflow: hidden;
}

.depoimentos-track {
    display: flex;
    align-items: stretch;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* ── Card slot (flex item) ──────────────────────────── */
.depoimento-card {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 0 12px 4px;
    background: transparent;
}

@media (max-width: 767.98px) {
    .depoimento-card {
        flex: 0 0 100%;
    }
}

/* ── Card inner box ─────────────────────────────────── */
.depoimento-card__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    height: 100%;
    transition: box-shadow .25s ease;
}

.depoimento-card__inner:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

/* ── Header: avatar à esquerda + meta à direita ──────── */
.depoimento-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    width: 100%;
}

/* ── Avatar wrapper (relative para badge G) ─────────── */
.depoimento-card__avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.depoimento-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

/* Badge Google "G" sobreposto no canto inferior direito */
.depoimento-card__g-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

/* ── Meta (nome + estrelas) à direita do avatar ─────── */
.depoimento-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

/* ── Nome ────────────────────────────────────────────── */
.depoimento-card__name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Estrelas ────────────────────────────────────────── */
.depoimento-card__stars {
    display: flex;
    gap: 2px;
}

/* ── Texto do depoimento ─────────────────────────────── */
.depoimento-card__text {
    font-size: 1.5rem;
    color: #3c4043;
    line-height: 1.65;
    margin: 0;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
}

/* ── Controls ────────────────────────────────────────── */
.depoimentos-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.dep-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    background: #fff;
    color: #3c4043;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.dep-btn:hover:not(:disabled) {
    background: #f1f3f4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.dep-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.depoimentos-dots {
    display: flex;
    gap: 8px;
}

.dep-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #dadce0;
    cursor: pointer;
    padding: 0;
    transition: background .25s ease, transform .25s ease;
}

.dep-dot--active {
    background: #1a73e8;
    transform: scale(1.35);
}