﻿/* Variáveis e Configurações Globais */
:root {
    /* Cores Oficiais */
    --lt-yellow: #FDB913;
    --lt-green: #006A44;
    --lt-red: #C1272D;
    /* Variações Modernas */
    --lt-green-dark: #004d32;
    --lt-green-surface: #E6F4EA; /* Fundo suave */
    --text-main: #2c3e50;
    --text-muted: #6c757d;
    --shadow-soft: 0 10px 40px -10px rgba(0, 106, 68, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(253, 185, 19, 0.25);
}

/* Animação de entrada suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    position: relative;
    background: radial-gradient(circle at top right, var(--lt-green-surface) 0%, #ffffff 60%);
    border-radius: 32px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(0, 106, 68, 0.05);
}

    /* Elemento decorativo de fundo (formas abstratas) */
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: var(--lt-yellow);
        filter: blur(80px);
        opacity: 0.15;
        z-index: 0;
        border-radius: 50%;
    }

.hero-content {
    flex: 1;
    z-index: 1;
    text-align: left; /* Alinhado à esquerda para leitura natural */
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem; /* Ícone gigante ou imagem */
    color: var(--lt-green);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem; /* Maior e mais impactante */
    font-weight: 800;
    color: var(--lt-green);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

/* Botões Modernizados */
.btn-home {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shape é mais amigável */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.btn-primary-custom {
    background: var(--lt-green);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 106, 68, 0.3);
}

    .btn-primary-custom:hover {
        background: var(--lt-green-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 106, 68, 0.4);
        color: white;
    }

.btn-secondary-custom {
    background: white;
    color: var(--lt-green);
    border: 2px solid var(--lt-green-surface);
}

    .btn-secondary-custom:hover {
        border-color: var(--lt-green);
        background: var(--lt-green-surface);
    }

/* Grid de Features */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    color: var(--text-main);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

    /* Pequeno sublinhado amarelo estiloso */
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--lt-yellow);
        margin: 10px auto 0;
        border-radius: 2px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: left; /* Texto alinhado à esquerda no card é mais moderno */
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: transparent;
    }

    /* Círculo decorativo no hover do card */
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--lt-yellow), var(--lt-green), var(--lt-red));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--lt-green-surface);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--lt-green);
    font-size: 1.6rem;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--lt-green);
    color: var(--lt-yellow);
}

.feature-title {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-message {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse; /* Imagem vai para cima ou some em mobile */
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-visual {
        margin-bottom: 2rem;
        font-size: 5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1.5rem auto;
    }
}
