.carousel-container {
    position: relative;
    overflow: hidden;
    padding: var(--space-md) 0;
}

/* STRIP CAROUSEL - Modo Faixa Automática */
.carousel-container.carousel--strip {
    padding: var(--space-xl) 0;
    background: transparent;
    border-radius: var(--border-radius-lg);
    transition: background-color 1s var(--ease-smooth);
    box-shadow: none;
}

.carousel-container.carousel--strip .carousel-wrapper {
    max-width: 100%;
    margin: 0;
}

.carousel-container.carousel--strip .carousel-slide {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-container.carousel--strip .carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 var(--space-sm);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Ocultar controles no modo strip */
.carousel-container.carousel--strip .carousel-controls {
    margin-top: var(--space-md);
}

.carousel-container.carousel--strip .carousel-btn {
    display: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    color: var(--color-text);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.carousel-btn:hover:not(:disabled) svg {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-surface-light);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 1 / 1;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 184, 148, 0.5);
}

.carousel-dot:hover {
    transform: scale(1.15);
}

/* Dots no modo strip - mais discretos */
.carousel-container.carousel--strip .carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.carousel-container.carousel--strip .carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: scale(1.4);
}

/* ========================================
   CARROSSEL DEPOIMENTOS - BASE COMPARTILHADA
   ======================================== */

.depoimentos {
    min-height: 400px;
    position: relative;
}

.depoimentos-carousel {
    width: 100%;
    position: relative;
    min-height: 300px;
}

.depoimentos-carousel .carousel-wrapper {
    width: 100%;
}

.depoimentos-carousel .carousel-track {
    display: flex;
    width: 100%;
}

.depoimentos-carousel .carousel-slide {
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.depoimentos-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Controles visíveis */
.depoimentos-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.depoimentos-controls .carousel-btn {
    display: flex !important;
}

/* Popup Base */
.depoimentos-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.depoimentos-popup[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.depoimentos-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.depoimentos-popup__content {
    position: relative;
    z-index: 1;
}

.depoimentos-popup__close {
    cursor: pointer;
    border: none;
}

.depoimentos-popup__image {
    max-width: 100%;
    height: auto;
}
