/* Importa a fonte do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* ==============================================
   ESTILOS GERAIS E BASE
============================================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Um cinza muito claro para o fundo geral */
    color: #343a40; /* Cor padrão do texto */
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

/* ==============================================
   NAVEGAÇÃO (NAVBAR)
============================================== */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}
.navbar-scrolled {
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ==============================================
   SEÇÃO HERÓI E CABEÇALHOS DE PÁGINA
============================================== */
.hero-gradient {
    background: linear-gradient(135deg, #4f46e5, #f89675);
    color: #ffffff;
    padding-top: 100px;
    padding-bottom: 20px; /* Ajustado para um respiro mínimo */
}

.hero-gradient h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-image-container {
    max-height: 500px;  
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container img {
    max-height: 100%;
}

.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* ==============================================
   SEÇÃO "COMO FUNCIONA" (INDEX)
============================================== */
.feature-icon-card {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #f89675);
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

/* ==============================================
   SEÇÃO DEPOIMENTOS
============================================== */
.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: #4f46e5;
    opacity: 0.5;
}

/* ==============================================
   SEÇÃO CTA (CALL TO ACTION)
============================================== */
.cta-gradient {
    background: linear-gradient(135deg, #4f46e5, #f89675);
}

/* ==============================================
   RODAPÉ (FOOTER)
============================================== */
.site-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 60px 0;
}

.footer-heading {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social a {
    color: #bdc3c7;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #4f46e5;
}

.site-footer hr {
    border-top: 1px solid #3e5165;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ==============================================
   PÁGINA "COMO FUNCIONA" E "RECURSOS"
============================================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 15px;
    bottom: 15px;
    width: 3px;
    background-color: #e9ecef;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #f89675);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid #fff;
    z-index: 1;
}

.timeline-item .card {
    margin-left: 1.5rem;
}

.sidebar-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.custom-accordion .accordion-item {
    border: 0;
}

.custom-accordion .accordion-button {
    font-weight: 500;
    border-radius: 5px !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #4f46e5;
    background-color: #f0f2f5;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.feature-icon-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 0.75rem;
}

/* ==============================================
   REGRAS PARA DISPOSITIVOS MÓVEIS (RESPONSIVIDADE)
============================================== */
@media (max-width: 991.98px) {
    .hero-gradient {
        /* Ajusta o espaçamento para mobile, deixando menos espaço */
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-gradient .row {
        text-align: center;
    }
    
    .hero-gradient .justify-content-md-start {
        justify-content: center !important;
    }

    .hero-image-container {
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .hero-gradient h1 {
        font-size: 2.2rem;
        margin-top: 0;
    }
}

/* ==============================================
   ESTILOS PÁGINA DE RECURSOS
============================================== */
.premium-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.premium-features i {
    color: #4f46e5; /* Cor primária */
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* ==============================================
   ESTILOS PÁGINA PREMIUM
============================================== */
.pricing-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #4f46e5;
}

.pricing-card .card-header {
    background-color: #4f46e5;
    color: white;
    border-radius: 14px 14px 0 0 !important;
    padding: 1rem;
    font-size: 1.2rem;
}

.pricing-card .btn-primary {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

