:root {
    --primary-color: #00D084;
    --primary-hover: #00B370;
    --bg-color: #FAFAFA;
    --card-bg: #FFFFFF;
    --selected-color: #0C8F9F;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border-color: #E5E7EB;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 32px rgba(0,208,132,0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

#app-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background-color: var(--card-bg);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Header & Progress */
header {
    padding: 24px 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 10;
    background: var(--card-bg);
}

/* Logo */
.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

.brand-logo {
    background: linear-gradient(135deg, #0A58CA 0%, var(--primary-color) 100%);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

.brand-logo span:first-child {
    font-size: 18px;
}

.brand-logo span:last-child {
    font-size: 11px;
    font-weight: 600;
}

.progress-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 99px;
}

.header-top {
    display: flex;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-btn:hover {
    background-color: var(--bg-color);
}

.header-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 34px;
    pointer-events: none;
    opacity: 0;
}

/* Main Content Area */
main {
    flex: 1;
    overflow-y: auto;
    padding: 12px 24px 100px;
    position: relative;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
main::-webkit-scrollbar {
    display: none;
}

/* Step Animations */
.step-content {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    pointer-events: none;
}

.step-content.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.step-content.exit {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    position: absolute;
}

/* Typography */
h1, h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 32px;
}

/* Options (Radio/Checkboxes) */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.option-card.selected {
    border-color: var(--selected-color);
    background-color: var(--selected-color);
    color: #FFFFFF;
}

.option-card.selected .option-text, 
.option-card.selected span {
    color: #FFFFFF;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.option-image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.option-image-full {
    width: 90px;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}


/* Grid Options (for Food) */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.grid-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    gap: 12px;
}
.grid-option img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.grid-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 208, 132, 0.05);
}

.grid-option.selected {
    border-color: var(--selected-color);
    background-color: var(--selected-color);
    color: #FFFFFF;
}

/* Footer / CTAs */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px 24px;
    background: linear-gradient(transparent, var(--card-bg) 20%);
    z-index: 10;
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 208, 132, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.btn-primary:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.5);
}

.btn-primary:disabled {
    background-color: var(--border-color);
    color: var(--text-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Images & Media */
.hero-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.before-after {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.before-after img {
    flex: 1;
    width: 50%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* Sliders / Inputs */
.input-group {
    margin-top: 32px;
    text-align: center;
}

.input-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}
.input-unit {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    outline: none;
    margin: 20px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.4);
    border: 4px solid white;
    transition: transform 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Loading Screen */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    text-align: center;
}
.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 32px;
}
@keyframes spin { 
    to { transform: rotate(360deg); } 
}

/* Special Components - Graph */
.graph-wrapper {
    position: relative;
    margin: 40px 0 20px;
    padding: 0 16px;
    animation: fade-in 0.8s ease-out;
}
.graph-svg-container {
    height: 200px;
    width: 100%;
    margin-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
    border-left: 2px solid #E5E7EB;
    position: relative;
}
.graph-label-top {
    position: absolute;
    top: -24px;
    left: 10px;
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
    z-index: 10;
}
.graph-label-bottom {
    position: absolute;
    bottom: 30px;
    right: 5px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}
.graph-x-axis {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
    padding: 0 5px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.testimonials-carousel::-webkit-scrollbar {
    height: 6px;
}
.testimonials-carousel::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 4px;
}
.testimonials-carousel::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}
.testimonial-card {
    min-width: 260px;
    width: 85%;
    max-width: 320px;
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    scroll-snap-align: center;
    flex-shrink: 0;
    white-space: normal;
    display: flex;
    flex-direction: column;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.testimonial-name {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    line-height: 1.2;
}
.testimonial-age {
    color: #6B7280;
    font-size: 12px;
}
.testimonial-card .testimonial-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

/* Offer Screen */
.offer-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin: 24px 0;
}
.offer-price span {
    font-size: 20px;
    color: var(--text-muted);
}
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Libido Step Styles */
.libido-container {
    animation: fadeIn 0.6s ease-out;
}

.libido-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.libido-subtitle {
    font-weight: 600;
    font-size: 19px;
    color: var(--text-main);
}

.libido-desc {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding: 0 8px;
}

.libido-graph-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px 20px;
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: visible;
}

.libido-svg-wrapper {
    position: relative;
    height: 180px;
    width: 100%;
    margin-bottom: 16px;
}

.libido-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Floating Badges */
.graph-badge {
    position: absolute;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.badge-gordura {
    background: #E6B800; /* Darker yellow for text readability */
    left: 14px;
    top: 6px;
}

.badge-libido {
    background: #FF0055;
    right: 14px;
    top: 6px;
}

.badge-arrow {
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    z-index: -1;
}

.badge-gordura .badge-arrow {
    background: #E6B800;
    bottom: -4px;
    left: 12px;
}

.badge-libido .badge-arrow {
    background: #FF0055;
    bottom: -4px;
    right: 12px;
}

/* Axis labels */
.graph-axis-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}

.axis-label {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 1px;
}

/* Micro-animations */
@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.pulse-ring {
    transform-origin: center;
    animation: pulseGlow 2.5s infinite ease-in-out;
}

.ring-libido {
    animation-delay: 0.5s;
}

.ring-gordura-end {
    animation-delay: 1s;
}

.ring-libido-start {
    animation-delay: 1.5s;
}

/* Path drawing animations */
@keyframes drawPath {
    from {
        stroke-dashoffset: 400;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.graph-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawPath 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.path-gordura {
    animation-delay: 0.1s;
}

.path-libido {
    animation-delay: 0.3s;
}

@keyframes fadeInFill {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.graph-path-fill {
    opacity: 0;
    animation: fadeInFill 1s ease-out forwards;
    animation-delay: 1.2s;
}

/* Meta Validada Step Styles */
.meta-validada-container {
    animation: fadeIn 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.meta-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.meta-badge {
    background-color: rgba(0, 208, 132, 0.1);
    color: var(--primary-hover);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 0.5px;
}

.meta-title {
    font-size: 21px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.meta-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 150px;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.meta-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.5s ease;
}

.meta-image-wrapper:hover .meta-image {
    transform: scale(1.03);
}

.meta-check-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.4);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.5s;
    border: 2.5px solid #FFFFFF;
}

.meta-check-overlay svg {
    width: 18px;
    height: 18px;
}

.meta-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.meta-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: center;
}

.meta-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.benefit-icon-bg {
    background-color: rgba(0, 208, 132, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-bg svg {
    width: 14px;
    height: 14px;
}

.benefit-label {
    font-size: 13.5px;
    font-weight: 550;
    color: var(--text-main);
}

/* Motivacional Idade Step Styles (Clean) */
.moti-clean-container {
    animation: fadeIn 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.moti-clean-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.moti-clean-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    padding: 0 8px;
}

.moti-clean-image-wrapper {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.moti-clean-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.moti-clean-image-wrapper:hover .moti-clean-image {
    transform: scale(1.02);
}

/* ===== Resultado Step (grafico_resultado_2) ===== */
.resultado-container {
    animation: fadeIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 14px;
}

.resultado-badge-wrapper {
    display: flex;
    justify-content: center;
}

.resultado-badge {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12), rgba(110, 231, 183, 0.12));
    color: var(--primary-hover);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid rgba(0, 208, 132, 0.25);
    letter-spacing: 0.5px;
}

.resultado-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--text-main);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.4px;
}

.resultado-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    padding: 0 4px;
}

/* Stats row */
.resultado-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    width: 100%;
    gap: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.resultado-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.resultado-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.resultado-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.resultado-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    flex-shrink: 0;
    margin: 0 4px;
}

/* Graph card */
.resultado-graph-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 14px 10px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.resultado-graph-labels-top {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.resultado-graph-svg-wrapper {
    height: 100px;
    width: 100%;
}

.resultado-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawPath 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.resultado-path-fill {
    opacity: 0;
    animation: fadeInFill 1s ease-out forwards;
    animation-delay: 1.5s;
}

.resultado-graph-x-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    border-top: 1px solid #F1F5F9;
    padding-top: 8px;
    margin-top: 6px;
}

/* Depoimentos section */
.depoimentos-section {
    width: 100%;
}

.depoimentos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.depoimentos-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.depoimentos-stars-summary {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #F59E0B;
}

.depoimentos-rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.depoimentos-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.depoimento-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    animation: fadeIn 0.5s ease-out both;
}

.depoimento-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.depoimento-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.depoimento-meta {
    flex: 1;
    min-width: 0;
}

.depoimento-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.depoimento-stars {
    font-size: 12px;
    color: #F59E0B;
    line-height: 1;
}

.depoimento-verified {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 208, 132, 0.08);
    padding: 2px 7px;
    border-radius: 99px;
    flex-shrink: 0;
}

.depoimento-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}
