/* style.css */

/* Ajuste para alinhar ícones do Google com o texto */
.material-symbols-outlined {
    vertical-align: middle;
}

/* Gradiente Exclusivo da Marca Ohana */
.bg-gradient-ohana {
    background: linear-gradient(135deg, #0095BF 0%, #0e1b23 100%);
}

/* Animações personalizadas (se houver no futuro) */
html {
    scroll-behavior: smooth;
}

/* Ajuste para o menu fixo não tapar o título da seção */
section {
    scroll-margin-top: 100px;
    /* Compensa a altura da Navbar */
}

/* --- ESTILOS DO CARROSSEL DE DEPOIMENTOS (PREMIUM VANILLA CSS) --- */
.depoimentos-ohana {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.titulo-secao {
    margin-bottom: 60px;
    color: #0f172a; /* text-slate-900 equivalente */
    font-size: 2.25rem;
    font-weight: 800;
}

/* Subtítulo de confiabilidade injetado via pseudo-elemento no CSS puro */
.titulo-secao::before {
    content: "CONFIABILIDADE";
    display: block;
    color: #0095bf;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.carrossel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carrossel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 2rem;
    padding: 20px 0;
}

.carrossel-track {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrossel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px 30px;
}

.conteudo-depoimento {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
    position: relative;
}

.conteudo-depoimento:hover {
    border-color: #cffafe;
}

/* Aspas decorativas exclusivas (Pseudo-elemento CSS) */
.conteudo-depoimento::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(0, 149, 191, 0.1);
    font-family: serif;
    line-height: 1;
}

.texto-depoimento {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: #475569; /* text-slate-600 */
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.autor-depoimento {
    margin: 0 0 5px 0;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
}

.empresa-depoimento {
    font-size: 0.8rem;
    color: #0095bf;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Botões de Navegação Modernos */
.carrossel-btn {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #0095bf;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
}

.carrossel-btn:hover {
    background: #0095bf;
    color: #ffffff;
    transform: scale(1.05);
}

/* Posição recuada se a tela for grande */
.prev { left: -20px; }
.next { right: -20px; }

/* Pontinhos de baixo (Dots) */
.carrossel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot.current-slide-dot {
    background: #0095bf;  /* Cor da Ohana */
    transform: scale(1.35);
}

/* Responsividade e ajustes para Celulares */
@media (max-width: 768px) {
    .carrossel-slide { padding: 10px 5px; }
    
    .conteudo-depoimento {
        padding: 30px 20px;
    }
    
    .conteudo-depoimento::before {
        top: 10px;
        left: 15px;
        font-size: 4rem;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Botões colados nas beiradas em mobile */
    .prev { left: 0; }
    .next { right: 0; }
}