/* Estilos específicos da página Sobre */
body {
    background-color: var(--white);
}

.about-hero {
    background-color: var(--primary-green);
    padding: 4rem 5%;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}/* Estilos específicos da página Sobre */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9; /* Fundo suave */
    overflow-x: hidden;
}

/* Seção Hero com gradiente e mais contraste */
.about-hero {
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    padding: 6rem 5%;
    text-align: center;
    color: var(--white);
}

.about-hero .hero-content {
    animation: fadeInDown 1s ease-out;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: 300;
}

/* Seções Genéricas */
.section {
    padding: 6rem 5%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Seção de informações com cards aprimorados */
.info-section {
    background-color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    padding: 2.5rem;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 85, 53, 0.1);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Seção "Como funciona" mais visual */
.how-it-works {
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    color: var(--primary-green);
    font-size: 2.8rem;
    margin-bottom: 5rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.step-item {
    text-align: center;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to top, var(--primary-green), #4e9a65);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    border: 5px solid var(--white);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

/* Seção CTA (Call to Action) */
.cta-section {
    text-align: center;
    background: var(--primary-green) url('https://www.transparenttextures.com/patterns/subtle-stripes.png');
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.btn-white {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--light-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Animações de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    background-color: var(--light-green);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 1.05rem;
}

.how-it-works {
    padding: 5rem 5%;
    background-color: var(--light-green);
}

.how-it-works h2 {
    text-align: center;
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.step-item {
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 5px var(--primary-green);
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-green);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-white {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 2rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-white:hover {
    background: var(--light-green);
    transform: translateY(-5px);
}
