:root {
    /* Cores */
    --primary-color: #007bff; /* Azul vibrante para botões e links principais */
    --secondary-color: #28a745; /* Verde para destaque ou sucesso (ex: Teste Gratuito) */
    --text-dark: #343a40; /* Texto principal escuro */
    --text-light: #f8f9fa; /* Texto claro (em backgrounds escuros) */
    --bg-light: #ffffff; /* Fundo principal claro */
    --bg-secondary: #f4f7f9; /* Fundo de seções de destaque */
    --border-color: #dee2e6; /* Cor de borda suave */
    --accent-color: #17a2b8; /* Ciano para detalhes ou ícones */
    --color-van: #1a1bad;

    /* Tipografia (Baseado em Sora e Roboto do seu HTML) */
    /* --font-heading: 'Sora', sans-serif;
    --font-body: 'Roboto', sans-serif; */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Espaçamento */
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --spacing-xl: 90px;
    /* --spacing-xs: 120px; */
}

/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Regras do #testimonial-area */
#testimonial-area .section-heading h2 {
    font-size: 48px;
    line-height: 58px;
}

.section-heading .movimento {
    font-size: .9rem;
    font-weight: 600;
    color: red;
    margin-bottom: var(--spacing-xl);
}

.section-heading p {
    font-size: 1.2rem;
    color: var(--color-van);
}

/* Regras do .testi-wrap */
.testi-wrap {
    position: relative;
    height: 725px;
    margin-top: -110px;
}

/* Regras do .client-single */
.client-single {
    margin-top: 20px;
    text-align: center;
    position: absolute;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

/* Regras para Transições */
.client-info,
.client-comment {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Regras para Inativos (inactive) */
.client-single.inactive .client-comment,
.client-single.inactive .client-info {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Posições Padrão (Escala) */
.client-single.position-1 {/* Centro */
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
}
.client-single.position-2 { /* lado esquerdo - centro */
    /* left: -40px; */
    left: -10px;
    /* top: 105px; */
    top: 225px;
}
.client-single.position-3 { /* lado esquerdo - debaixo */
    /* left: -60px; */
    left: 100px;
    /* top: 240px; */
    top: 400px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
}
.client-single.position-4 { /*lado esquerdo - emcima */
    /* left: -10px; */
    left: 100px;
    /* top: 380px; */
    top: 30px;
}
.client-single.position-5 { /* lado direito - emcima */
    top: 30px;
    /* top: 0px; */
    right: 55px;
    /* right: 0px; */
}
.client-single.position-6 { /* lado direito - centro */
    top: 225px;
    /* top: 0px; */
    right: -40px;
    /* right: 0px; */
}
.client-single.position-7 {/* lado direito - debaixo */
    top: 400px;
    right: 65px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
}

/* Regras para Ativo (active) */
.client-single.active {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 70%;
}
.client-single.active .client-comment,
.client-single.active .client-info {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

/* Regras para Não Ativo (Escala Padrão) */
.client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.55);
    z-index: 99; /* Z-index alto para os inativos é incomum, geralmente é baixo */
}

/* Imagem Ativa (Borda de Gradiente) */
.client-single.active .client-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    /* margin: 0 auto; */
    position: relative;
}
.client-single.active .client-img::before {
    border-radius: 100%;
    content: '';
    /* Gradiente (com prefixos de compatibilidade) */
   /* background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(157, 91, 254)), to(rgb(56, 144, 254)));
    background-image: linear-gradient(180deg, rgb(157, 91, 254) 0%, rgb(56, 144, 254) 100%);*/
    background-color: var(--color-van);
    padding: 5px;
    width: 160px;
    height: 160px;
    /* top: -4px; */
    top: -10px;
    left: -4px;
    position: absolute;
    z-index: -1;
}

/* Imagem Padrão */
.client-single .client-img img {
    width: 150px;
    border-radius: 50%;
    border: 8px solid #d1e9ff;
    cursor: pointer;
}

/* Imagem Ativa (Removendo Borda) */
.client-single.active .client-img img {
    max-width: 160px;
    margin: 0 auto 24px;
    border: 0;
}

/* Comentário do Cliente */
.client-comment {
    padding: 0 30px;
}
.client-comment h3 {
    font-size: 22px;
    line-height: 32px;
    color: #505b6d;
}
.client-comment span i {
    font-size: 60px;
    /* color: #0084ff; */
    color: var(--color-van);
    margin: 20px 0 24px;
    display: inline-block;
}

/* Informações do Cliente */
.client-info {
    h3 {
        color: var(--text-dark) !important;
        font-weight: 600;
        /* margin-bottom: 4px; */
        font-size: 1.2rem;
        line-height: 1;
    }
    p {
        color: var(--color-van) !important;
        /* text-transform: uppercase; */
        font-weight: 700;
        font-size: 1.1rem;
        pointer-events: none;
    }
}

 /* ========================================= */
/* ESTRUTURA SEM BOOTSTRAP                   */
/* ========================================= */

.section-header-wrap {
    /* Simula col-md-8 offset-md-2: Limita a largura do bloco e centraliza horizontalmente */
    max-width: 750px; /* Largura comum para 66.66% da coluna (col-md-8) */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg); /* Adiciona espaço abaixo do cabeçalho */
}

.section-heading.text-center {
    text-align: center; /* Garante que o texto dentro seja centralizado */
}


/* ========================================= */
/* ESTILIZAÇÃO DO CONTEÚDO (AJUSTE)          */
/* ========================================= */

/* Caso o CSS do seu H2 precise ser resetado */
#testimonial-area .section-heading h2 {
    font-size: 48px;
    line-height: 58px;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark); /* Exemplo */
}

.section-heading h5 {
    color: var(--color-van); /* Exemplo */
    font-weight: 600;
}

.section-heading p {
    color: var(--text-muted); /* Exemplo */
    margin-bottom: var(--spacing-xs);
}
 /* ========================================= */
/* ESTRUTURA SEM BOOTSTRAP                   */
/* ========================================= */

/* ========================================= */
/* Media Queries (Desktop Médio)             */
/* ========================================= */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #testimonial-area .section-heading h2 {
        font-size: 30px;
    }
    .client-comment h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .client-single.active {
        width: 60%;
    }
    .client-single:not(.active) {
        -webkit-transform: scale(0.55);
        transform: scale(0.35);
    }
    .client-single.position-3,
    .client-single.position-7 {
        -webkit-transform: scale(.30) !important;
        transform: scale(.30) !important;
    }
    .client-single.active .client-img img {
        max-width: 100px;
    }
    .client-single.active .client-img::before {
        padding: 5px;
        width: 108px;
        height: 108px;
        top: -4px;
        left: 6px;
    }
    .client-single.active .client-img {
        width: 120px;
        height: 100px;
    }
    .testi-wrap {
        height: 580px;
    }
    #testimonial-area {
        padding: 100px 0 0;
    }
}

/* ========================================= */
/* Media Queries (Tablet)                    */
/* ========================================= */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    #testimonial-area .section-heading h2 {
        font-size: 30px;
    }
    .client-comment h3 {
        font-size: 14px;
        line-height: 26px;
    }
    .client-single.active {
        width: 60%;
    }
    .client-comment span i {
        font-size: 40px;
    }
    .client-single:not(.active) {
        -webkit-transform: scale(0.55);
        transform: scale(0.35);
    }
    .client-single.position-5,
    .client-single.position-7 {
        right: 0;
    }
    .client-single.position-4 {
        left: 0;
    }
    .client-single.position-3,
    .client-single.position-7 {
        -webkit-transform: scale(.30) !important;
        transform: scale(.30) !important;
    }
    .client-single.active .client-img img {
        max-width: 80px;
    }
    .client-single.active .client-img::before {
        padding: 5px;
        width: 88px;
        height: 88px;
        top: -4px;
        left: 16px;
    }
    .client-single.active .client-img {
        width: 120px;
        height: 100px;
    }
    .testi-wrap {
        height: 630px;
    }
}

/* ========================================= */
/* Media Queries (Mobile Grande)             */
/* ========================================= */
@media only screen and (min-width: 360px) and (max-width: 479px) {
    #testimonial-area .section-heading h2 {
        font-size: 30px;
        line-height: 40px
    }
    .client-comment h3 {
        font-size: 14px;
        line-height: 26px;
    }
    .client-single.active {
        width: 80%;
    }
    .client-comment span i {
        font-size: 40px;
    }
    .client-single:not(.active) {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
    }
    .client-single.position-5,
    .client-single.position-7,
    .client-single.position-6 {
        right: -70px;
    }
    .client-single.position-4 {
        left: -60px;
    }
    .client-single.position-3 {
        left: -75px;
    }
    .client-single.position-3,
    .client-single.position-7 {
        -webkit-transform: scale(.25) !important;
        transform: scale(.25) !important;
    }
    .client-single.active .client-img img {
        max-width: 80px;
    }
    .client-single.active .client-img::before {
        padding: 5px;
        width: 88px;
        height: 88px;
        top: -4px;
        left: 16px;
    }
    .client-single.active .client-img {
        width: 120px;
        height: 100px;
    }
    .testi-wrap {
        height: 600px;
    }
}

/* ========================================= */
/* Media Queries (Mobile Pequeno)            */
/* ========================================= */
@media only screen and (min-width: 320px) and (max-width: 359px) {
    #testimonial-area .section-heading h2 {
        font-size: 30px;
    }
    .client-comment h3 {
        font-size: 14px;
        line-height: 26px;
    }
    .client-single.active {
        width: 80%;
    }
    .client-comment span i {
        font-size: 40px;
    }
    .client-single:not(.active) {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
    }
    .client-single.position-5,
    .client-single.position-7,
    .client-single.position-6 {
        right: -70px;
    }
    .client-single.position-4 {
        left: -60px;
    }
    .client-single.position-3 {
        left: -75px;
    }
    .client-single.position-3,
    .client-single.position-7 {
        -webkit-transform: scale(.25) !important;
        transform: scale(.25) !important;
    }
    .client-single.active .client-img img {
        max-width: 80px;
    }
    .client-single.active .client-img::before {
        padding: 5px;
        width: 88px;
        height: 88px;
        top: -4px;
        left: 16px;
    }
    .client-single.active .client-img {
        width: 120px;
        height: 100px;
    }
    .testi-wrap {
        height: 550px;
    }
}