/* pages.css - Estilos específicos das páginas */

/* --- Landing Page --- */
.hero-section {
    background-color: #FFFFFF;
    padding: 8rem 2rem;
    text-align: center;
    color: var(--color-text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Remove o fundo branco da imagem caso haja */
    margin-bottom: 3rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-section {
    padding: 8rem 0;
    background-color: #F7F9FA;
    border-top: 1px solid var(--color-border);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-700);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: left;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--color-primary-50);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-primary-700);
}

.feature-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
