* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f9fc;
    color: #1f2937;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

:root {
    --azul: #0d6efd;
    --azul-escuro: #003b73;
    --azul-claro: #3aa0ff;
    --branco: #ffffff;
    --preto: #1e293b;
    --cinza: #64748b;
    --cinza-claro: #e5e7eb;
    --verde: #25D366;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

section {
    padding: 100px 0;
}

.titulo-secao {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-secao span {
    color: var(--azul);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
}

.titulo-secao h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin: 15px 0;
    color: var(--preto);
}

.titulo-secao p {
    max-width: 700px;
    margin: auto;
    color: var(--cinza);
    line-height: 1.8;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--branco);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-img {
    height: 55px;
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--cinza);
    transition: color 0.3s;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--azul);
    transition: width 0.3s;
}

.menu a:hover,
.menu a.ativo {
    color: var(--azul);
}

.menu a:hover::after,
.menu a.ativo::after {
    width: 100%;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-header:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--azul);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.hero-texto h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--preto);
}

.hero-texto h1 span {
    color: var(--azul);
}

.hero-texto p {
    font-size: 17px;
    color: var(--cinza);
    line-height: 1.8;
    max-width: 520px;
}

.hero-botoes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-principal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde);
    color: var(--branco);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-principal:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--azul);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--azul);
    transition: background 0.3s, color 0.3s;
}

.btn-secundario:hover {
    background: var(--azul);
    color: var(--branco);
}

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-imagem img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.estatisticas {
    padding: 50px 0;
    background: var(--azul);
}

.estatisticas .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card-estatistica {
    text-align: center;
    color: var(--branco);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
}

.card-estatistica i {
    font-size: 28px;
    opacity: 0.8;
}

.card-estatistica h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.card-estatistica p {
    font-size: 14px;
    opacity: 0.85;
}

.sobre {
    background: var(--branco);
}

.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-imagem {
    flex: 1;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.sobre-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-texto .titulo-secao {
    text-align: left;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--azul);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sobre-texto h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--preto);
    line-height: 1.3;
}

.sobre-texto p {
    color: var(--cinza);
    line-height: 1.8;
    font-size: 15px;
}

.sobre-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sobre-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--preto);
    font-weight: 500;
}

.sobre-lista li i {
    color: var(--azul);
    font-size: 18px;
}

.servicos {
    background: #f7f9fc;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card-servico {
    background: var(--branco);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.card-servico:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    border-top-color: var(--azul);
}

.card-servico i {
    font-size: 36px;
    color: var(--azul);
}

.card-servico h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--preto);
}

.card-servico p {
    font-size: 14px;
    color: var(--cinza);
    line-height: 1.7;
}

.processo {
    background: var(--branco);
}

.etapas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
    gap: 24px;
    justify-content: center;
}

.etapa {
    background: var(--branco);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
    width: 100%;
    margin: 0 auto;
}

.etapa:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    border-top-color: var(--azul);
}

.etapa span {
    width: 60px;
    height: 60px;
    background:linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 15px rgba(13, 110, 253, .3);
    margin-bottom: 10px;
}

.etapa h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--preto);
    font-weight: 700;
}

.etapa p {
    font-size: 14px;
    color: var(--cinza);
    line-height: 1.7;
}

.diferenciais {
    background: #f7f9fc;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card-diferencial {
    background: var(--branco);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: transform 0.3s;
}

.card-diferencial:hover {
    transform: translateY(-4px);
}

.card-diferencial i {
    font-size: 32px;
    color: var(--azul);
}

.card-diferencial h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--preto);
}

.card-diferencial p {
    font-size: 14px;
    color: var(--cinza);
    line-height: 1.7;
}

.feedback {
    background: var(--azul-escuro);
    padding: 80px 0;
}

.feedback-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.feedback-box .tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: var(--branco);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.feedback-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--branco);
    line-height: 1.3;
}

.feedback-box p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    font-size: 15px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde);
    color: var(--branco);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-hero:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.galeria {
    background: var(--branco);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.card-galeria {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-galeria img,
.card-galeria video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.card-galeria:hover img {
    transform: scale(1.05);
}

.card-galeria .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
    color: var(--branco);
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: transform 0.3s;
    pointer-events: none;
}

.card-galeria:hover .overlay {
    transform: translateY(0);
}

.card-galeria .overlay h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-galeria .overlay p {
    font-size: 13px;
    opacity: 0.85;
}

.card-galeria video {
    grid-column: span 1;
}

.cta {
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
}

.cta .tag {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    color: var(--branco);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--branco);
    line-height: 1.3;
}

.cta .destaque {
    color: #90cdf4;
}

.cta p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    font-size: 15px;
}

footer {
    background: var(--preto);
    padding: 30px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-footer {
    height: 45px;
}

footer p {
    font-size: 14px;
    color: #94a3b8;
}

footer a {
    color: var(--azul-claro);
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
        width: 100%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-texto h1 {
        font-size: 2rem;
    }

    .hero-texto p {
        margin: 0 auto;
    }

    .hero-botoes {
        justify-content: center;
    }

    .sobre-container {
        flex-direction: column;
    }

    .sobre-texto .titulo-secao {
        text-align: center;
    }

    .sobre-texto h2 {
        text-align: center;
    }

    .sobre-lista {
        align-items: center;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .titulo-secao h2 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}