body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #ffffff;
}

html, body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

section {
    padding: 100px 0;
}

/* HERO */

.odonto-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    text-align: center;
}

.odonto-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.odonto-hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    color: #475569;
}

/* BOTÃO */

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-3px);
}

.btn-primary.large {
    font-size: 18px;
    padding: 16px 32px;
}

/* GRIDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* CARDS */

.card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.highlight {
    background: #e0f2fe;
}

/* SOLUÇÃO */

.solucao-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solucao-flex ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.solucao-flex ul li {
    margin-bottom: 12px;
}

/* IMAGENS SEM CORTE */

.solucao-flex img,
.grid-2 img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* CTA */

.cta-final {
    margin-top: 60px;
    text-align: center;
}

/* RESPONSIVO */

@media (max-width: 992px) {

    section {
        padding: 60px 0;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .solucao-flex {
        flex-direction: column;
    }

    .odonto-hero h1 {
        font-size: 30px;
    }
}