/* Página Início (index.html) */

/* Hero */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url('../img/home/fundo-home.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1e3a5f;
}

/* SVGs sobrepondo o GIF – rentes ao canto inferior direito, sem espaço */
.hero-fundo-imgs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-fundo-img {
    position: absolute;
    right: 2%;
    bottom: 0;
    max-width: 900px;
    height: 75%;
    max-height: 75vh;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: -20px;
}
.hero-fundo-img.hero-fundo-img--ativo {
    opacity: 1;
}

/* SVG 3 um pouco mais para cima que os demais */
.hero-fundo-img.hero-fundo-img--up {
    bottom: 2%;
}

/* Menu e logo legíveis sobre o GIF na página Início (quando não tem fundo) */
.header--over-hero:not(.header--scrolled) nav a {
    color: #1e3a5f;
}
.header--over-hero:not(.header--scrolled) nav a:hover {
    background: rgba(30, 58, 95, 0.08);
    color: #1e3a5f;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0;
    padding: 30px 24px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
    transition: padding 0.35s ease, gap 0.35s ease;
}

.hero-conteudo {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #1e3a5f;
    margin-top: 100px;
    margin-bottom: 16px;
    transition: margin-top 0.35s ease, font-size 0.35s ease;
}

.hero-texto {
    color: #1e3a5f;
    font-size: 1.25rem;
    margin-bottom: 24px;
    max-width: 520px;
}

/* Diferenciais */
.diferenciais {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.diferenciais h2 {
    font-size: 1.75rem;
    color: var(--texto-principal);
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-icone {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.card-icone img,
.card-icone svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--texto-principal);
    margin-bottom: 8px;
}

.card p {
    color: var(--texto-secundario);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Quem somos / Números */
.quem-somos {
    background: linear-gradient(160deg, #f0f9ff 0%, #ecfdf5 100%);
    padding: 80px 24px;
}

.quem-somos-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.quem-somos-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--texto-principal);
    margin-bottom: 12px;
}

.quem-somos h2 {
    font-size: 1.75rem;
    color: var(--texto-principal);
    margin-bottom: 16px;
}

.quem-somos-texto {
    color: var(--texto-secundario);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.numeros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
}

.numero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.numero-valor {
    font-size: 2.25rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2;
}

.numero-label {
    font-size: 0.9rem;
    color: var(--texto-secundario);
    margin-top: 4px;
}

/* Suporte */
.suporte {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.suporte-conteudo {
    display: flex;
    align-items: stretch;
    gap: 48px;
    background: #fff;
    padding: 32px 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.suporte-esquerda {
    flex: 1;
    min-width: 0;
}

.suporte-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--texto-principal);
    margin-bottom: 12px;
}

.suporte h2 {
    font-size: 1.75rem;
    color: var(--texto-principal);
    margin-bottom: 16px;
}

.suporte-texto {
    color: var(--texto-secundario);
    line-height: 1.6;
    margin-bottom: 24px;
}

.suporte-canais {
    list-style: none;
    margin-bottom: 28px;
    color: var(--texto-secundario);
}

.suporte-canais li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.suporte-canais li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("../img/check.svg") no-repeat center;
    background-size: contain;
}

.btn-suporte {
    display: inline-block;
    background: var(--cor-btn-destaque);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--raio-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--sombra-btn-destaque);
    transition: background var(--transicao), transform var(--transicao), box-shadow var(--transicao);
}

.btn-suporte:hover {
    background: var(--cor-btn-destaque-hover);
    transform: translateY(-2px);
    box-shadow: var(--sombra-btn-destaque-hover);
}

.suporte-direita {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 280px;
    max-width: 380px;
}

.suporte-horario-bloco {
    text-align: right;
    margin-bottom: 24px;
}

.suporte-horario-titulo {
    font-weight: 700;
    color: var(--texto-principal);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.suporte-horario-linhas {
    color: var(--texto-secundario);
    font-size: 0.95rem;
    line-height: 1.5;
}

.suporte-ilustracao {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.suporte-ilustracao img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Depoimentos */
.depoimentos {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 24px 70px;
    margin: 0 0 80px 0;
    background: linear-gradient(160deg, #1e3a5f 0%, #0f2744 100%);
    overflow: hidden;
}

.depoimentos-label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.depoimentos-titulo {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 500;
}

.depoimentos-label,
.depoimentos-titulo,
.depoimentos-carrossel {
    position: relative;
    z-index: 1;
}

.depoimentos-carrossel {
    max-width: 560px;
    width: 100%;
}

.depoimentos-lista {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.depoimentos-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.depoimentos-slide.ativo {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.depoimentos-slide.ativo blockquote {
    animation: depoimentoEntrada 0.6s ease;
}

@keyframes depoimentoEntrada {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depoimentos blockquote {
    background: transparent;
    padding: 20px 0;
    margin: 0;
    max-width: 100%;
}

.depoimentos-slide:nth-child(even) blockquote {
    margin-left: auto;
    margin-right: 0;
}

.depoimentos blockquote p {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 16px;
}

.depoimentos cite {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
}

.depoimentos-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.depoimentos-indicadores .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.depoimentos-indicadores .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.depoimentos-indicadores .dot.ativo {
    background: #22c55e;
    transform: scale(1.2);
}

/* Responsivo - Página Início */
@media (max-width: 900px) {
    /* Com menu dos 3 risquinhos: texto no topo, com espaço para não pegar na logo */
    .hero-inner {
        padding-top: 100px;
    }
    .hero h1 {
        margin-top: 0;
    }
    .suporte-conteudo {
        flex-direction: column;
        padding: 24px 24px;
    }
    .suporte-direita {
        max-width: 100%;
        min-width: 0;
        align-items: center;
    }
    .suporte-horario-bloco {
        text-align: center;
    }
    .suporte-ilustracao {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        padding: 100px 16px 40px;
        gap: 28px;
    }

    /* SVGs no mobile – maior, com espaço na lateral direita */
    .hero-fundo-img {
        width: 100%;
        max-width: none;
        height: 98%;
        max-height: 98vh;
        right: 3%;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-texto {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .diferenciais {
        padding: 48px 16px;
    }

    .diferenciais h2 {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        min-width: 0;
        width: 100%;
        padding: 24px;
    }

    .quem-somos {
        padding: 48px 16px;
    }

    .quem-somos h2 {
        font-size: 1.5rem;
    }

    .quem-somos-texto {
        margin-bottom: 32px;
    }

    .numeros {
        gap: 24px 32px;
    }

    .numero-valor {
        font-size: 1.9rem;
    }

    .suporte {
        padding: 48px 16px;
    }

    .suporte-conteudo {
        padding: 24px 20px;
    }

    .suporte h2 {
        font-size: 1.45rem;
    }

    .suporte-texto {
        font-size: 0.95rem;
    }

    .depoimentos {
        padding: 40px 16px 50px;
        margin-bottom: 48px;
    }

    .depoimentos-titulo {
        font-size: 1.3rem;
        margin-bottom: 32px;
    }

    .depoimentos blockquote p {
        font-size: 0.95rem;
    }

    .depoimentos cite {
        font-size: 0.85rem;
    }
}

@media (max-width: 700px) {
    .depoimentos blockquote {
        max-width: 100%;
    }
    .depoimentos blockquote p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.55rem;
    }

    .diferenciais h2,
    .quem-somos h2 {
        font-size: 1.35rem;
    }

    .numero-item {
        min-width: 100px;
    }

    .numero-valor {
        font-size: 1.65rem;
    }

    .suporte-direita {
        max-width: 100%;
    }

    .suporte-ilustracao img {
        max-width: 260px;
    }
}
