:root {
    --azul-prest: #0056B3;
    --verde-pro: #1B5E20;
    --fundo-clean: #F8F9FA;
    --texto-principal: #212529;
    --texto-secundario: #6C757D;
    --branco: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--fundo-clean);
    color: var(--texto-principal);
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

/* Header & Nav */
.navbar {
    background-color: var(--branco);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.brand-prest {
    color: var(--azul-prest);
}

.brand-pro {
    color: var(--verde-pro);
    font-weight: 700;
}

.btn-pro {
    background-color: var(--verde-pro);
    color: var(--branco);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
}

    .btn-pro:hover {
        background-color: #144618;
        color: var(--branco);
    }

/* Hero Section */
.hero {
    background-color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.search-container {
    max-width: 600px;
    margin: 30px auto 0;
}

.form-control:focus {
    border-color: var(--azul-prest);
    box-shadow: none;
}

/* Categorias Grid */
.category-card {
    background: var(--branco);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: var(--texto-principal);
    transition: all 0.2s ease-in-out;
    display: block;
    height: 100%;
}

    .category-card:hover {
        border-color: var(--azul-prest);
        transform: translateY(-3px);
        color: var(--azul-prest);
    }

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #001a35; /* Azul bem escuro para contraste */
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
    margin-top: 50px;
}

    footer h5 {
        color: var(--branco);
        font-weight: 700;
        margin-bottom: 20px;
    }

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

    .footer-link:hover {
        color: var(--verde-pro);
    }

.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

    .newsletter-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
}




.brand-prest {
    color: var(--azul-prest);
}

.brand-pro {
    color: var(--verde-pro);
    font-weight: 700;
}

/* Timeline / Passos */
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--azul-prest);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 20px;
    height: 100%;
    transition: transform 0.3s;
}

    .step-card:hover {
        transform: translateY(-10px);
    }

.icon-large {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* Seção de Segurança */
.security-box {
    background-color: #e8f0fe;
    border-left: 5px solid var(--azul-prest);
    padding: 30px;
    border-radius: 8px;
}

.cta-section {
    background-color: var(--verde-pro);
    color: white;
    padding: 60px 0;
    border-radius: 20px;
    margin-top: 50px;
}

/* Seção Download App */
.download-app {
    background: linear-gradient(135deg, #fdfdfd 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid #dee2e6;
}

.app-badges img {
    height: 45px;
    transition: transform 0.2s;
}

    .app-badges img:hover {
        transform: scale(1.05);
    }

.app-mockup {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .download-app {
        text-align: center;
        padding: 30px 20px;
    }

    .app-badges {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

        .app-badges img {
            height: 35px;
        }
}

/* Estilo para a Logo e Texto no Topo */
.navbar-brand {
   /* display: flex;*/
    align-items: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    font-size: 1.5rem;
}

.brand-icon {
    height: 35px; /* Altura do ícone */
    width: auto;
}

.brand-text {
    display: flex;
    align-items: center;
}

/* Estilo da Lista de Categorias */
.category-section-title {
    color: var(--azul-prest);
    border-bottom: 2px solid var(--azul-prest);
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: 700;
}

.category-list {
    list-style: none;
    padding: 0;
}

    .category-list li {
        margin-bottom: 10px;
    }

.category-link {
    text-decoration: none;
    color: var(--texto-principal);
    transition: color 0.2s;
    font-size: 0.95rem;
}

    .category-link:hover {
        color: var(--verde-pro);
        font-weight: 500;
    }

.search-filter {
    background-color: var(--branco);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}



/* Seção Hero para Profissionais */
.hero-pro {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.card-cadastro {
    background: white;
    border-radius: 15px;
    padding: 30px;
    color: var(--texto-principal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--verde-pro);
    margin-bottom: 15px;
}

.btn-cadastro {
    background-color: var(--verde-pro);
    color: white;
    font-weight: 700;
    border: none;
    padding: 12px;
    width: 100%;
    transition: 0.3s;
}

    .btn-cadastro:hover {
        background-color: #144618;
        color: white;
    }