body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #374151;
    line-height: 1.6;
}

.titulo {
    padding-top: 64px;
    padding-bottom: 64px;
}

.formato {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 20px; 
    letter-spacing: 0.04em;
}

.texto-sobre {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.texto-sobre:not(:last-child) {
    margin-bottom: 24px;
}

.p {
    font-size: 18px;
    color: #4b5563;
}

.selecao-sobre {
    color: #f97316;
    font-weight: 600;
}

@media (max-width: 768px) {
    h2 {
        font-size: 26px;
    }

    .texto-sobre,
    .p {
        font-size: 16px;
    }

    .titulo {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

[data-fade] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-fade].ativo {
    opacity: 1;
    transform: translateY(0);
}
.py-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

html {
    scroll-behavior: smooth;
}

#solucoes{
    scroll-margin-top: 30px;
}

/*estilização de planos*/
.card-plano {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-plano:hover {
    border-color: #f97316;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card-titulo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.card-lista {
    margin-bottom: 24px;
}

.card-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    color: #4b5563;
}

.check {
    color: #22c55e;
    font-weight: bold;
}

.destaque {
    font-weight: 600;
    color: #111827;
}

.card-botao {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #111827;
    color: white;
    padding: 10px 48px;
    border-radius: 999px;
    transition: 0.2s;
    z-index: 10;
}

.card-botao:hover {
    background: #000;
}

/*.destaque-card {
    border: 2px solid #f97316;
}

.destaque-card::before {
    content: "Mais indicado";
    position: absolute;
    top: -12px;
    right: 16px;
    background: #f97316;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}*/

.tag-obrigatorio {
    font-size: 11px;
    color: #6b7280;
}

.hide {
    visibility: hidden;
}


.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 60%,
        rgba(255,255,255,1) 100%
    );
}

.ver-mais-btn {
    background: #e79458;
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .card-lista {
        max-height: none !important;
    }

    .fade-overlay {
        display: none;
    }
}

.submodulo {
    margin-top: 10px;
    padding-left: 12px;
    border-left: 3px solid #f97316;
}

.submodulo-titulo {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 4px;
}

.subitem {
    margin-left: 8px;
}