/* ============================
   RESET GLOBAL
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================
   TIPOGRAFIA GLOBAL
   ============================ */
body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #0A1A2F;
}

/* Container padrão */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ============================
   CORES OFICIAIS SADISSA
   ============================ */
:root {
    --sadissa-blue: #0B2A4A;
    --sadissa-yellow: #F9B233;
    --sadissa-green: #009739;
    --sadissa-orange: #F28C28;
    --sadissa-purple: #7B4AE2;
    --gray-light: #E5E7EB;
    --gray-dark: #1F2937;
    --white: #FFFFFF;
}
/* ============================
   TÍTULOS E SUBTÍTULOS
   ============================ */

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--sadissa-orange);
    margin-bottom: 20px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--sadissa-orange);
    margin-bottom: 15px;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--sadissa-orange);
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 600px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }
    p  { font-size: 14px; }
}
/* ============================
   SEÇÃO: COMO FUNCIONA
   ============================ */

.como-funciona {
    padding: 90px 0;
    background: #F9FAFB;
    text-align: center;
}

.cf-title {
    font-size: 32px;
    font-weight: 800;
    color: #0B2A4A;
    margin-bottom: 10px;
}

.cf-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 50px;
}

.cf-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Card */
.cf-step {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    flex: 1;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.cf-step.show {
    opacity: 1;
    transform: translateY(0);
}

.cf-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Ícone */
.cf-icon {
    width: 70px;
    height: 70px;
    background: var(--sadissa-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.cf-icon img {
    width: 40px;
}

/* Responsivo */
@media (max-width: 800px) {
    .cf-steps {
        flex-direction: column;
    }
}
/* ============================
   SECÇÃO: CATEGORIAS
   ============================ */

.categorias {
    padding: 80px 0;
    background: #F9FAFB;
}

.categorias-content {
    text-align: center;
}

.categorias h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0B2A4A;
    margin-bottom: 40px;
}

.categorias h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff8a00;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Slider */
.categorias-slider {
    width: 100%;
    overflow: hidden;
}

.categorias-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Card */
.categoria-card {
    width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #ff8a00, #ffb300, #ff8a00);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.categoria-card:hover {
    transform: translateY(-6px);
}

.categoria-card img {
    width: 60px;
    margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 900px) {
    .categorias-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .categoria-card {
        width: 85%;
        scroll-snap-align: center;
        margin: 0 auto;
    }
}
/* ============================
   SECÇÃO: PROFISSIONAIS
   ============================ */

.profissionais {
    padding: 80px 20px;
    background: #F9FAFB;
}

.profissionais-content {
    text-align: center;
}

.profissionais h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0B2A4A;
    margin-bottom: 50px;
}

.profissionais-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.prof-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.prof-card:hover {
    transform: translateY(-6px);
}

.prof-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* Botão */
.btn-ver {
    background: #009739;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-ver:hover {
    background: #007f2f;
}

/* Mobile */
@media (max-width: 480px) {
    .btn-ver {
        width: 100%;
    }
}
/* ============================
   SECÇÃO: APP SADISSA
   ============================ */

.app-sadissa {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B2A4A, #009739);
    color: white;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-text h2 {
    font-size: 36px;
    font-weight: 700;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.btn-app {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}
/* Links na secção App Sadissa */
.app-sadissa a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.app-sadissa a:hover {
    color: var(--sadissa-yellow);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
    .app-content {
        flex-direction: column-reverse;
        text-align: center;
    }
}
/* ============================
   FOOTER SADISSA
   ============================ */

.footer {
    background: linear-gradient(135deg, #0B2A4A, #0A0F14);
    color: #ffffff;
    padding: 70px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 15px;
    color: #dbe2ea;
    margin-bottom: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
/* Links no footer */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: var(--sadissa-orange);
    text-decoration: underline;
}


/* ============================
   RESPONSIVIDADE GLOBAL
   ============================ */

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
