/* Reset básico */
.landpage,
.landpage * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.landpage {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
.landpage header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #3c83c8, #0D47A1);
    color: white;
    border-radius: 5px;
}

.page-content .sobre-nos {
    padding: 0;
}

.landpage header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.landpage header p {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--bg-general);
    margin: 0 auto;
}

.landpage header {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 60px 20px 60px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #3c83c8, #0D47A1);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

header h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Selo */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
}

#cta {
    margin-top: 20px;
}

#cta button {
    background: #fff;
    color: #2a2a2a;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 8px;
}

#cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cta button.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#cta button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Sections */
.landpage section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background: white;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

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

.landpage section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--bg-button);
}

.landpage section p {
    margin-bottom: 20px;
}

#impacto {
    display: none;
}

/* Section Images */
.landpage section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0px auto;
    border-radius: 8px;
}

/* Socios Grid */
.socio-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.socio {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 300px;
    max-width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socio img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.socio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Features List */
.feature-list {
    list-style: disc inside;
    padding-left: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background: var(--bg-button);
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    font-weight: bold;
}

#IAResult .stat p {
    font-weight: normal;
    margin-top: 10px;
    color: var(--text-button);
}

/* CTA */
#cta {
    text-align: center;
}

#cta button {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: var(--bg-button);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

#cta button:hover {
    background: #0D47A1;
}

/* Footer */
.landpage footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-button);
    color: white;
}

.landpage footer a {
    color: var(--bg-general);
    text-decoration: none;
}

#ia-empty-guide .landpage header p,
#ia-empty-guide .landpage footer p {
    color: var(--text-button);
}

.landpage .advanced-resources {
    display: flex;
    gap: 10px;
}

.landpage .advanced-resources .btn {
    max-width: 25%;
    width: 24%;
}


.landpage .advanced-resources img {
    max-width: 35px;
}

.landpage .advanced-resources .btn .icon {
    padding: 0px 0px 0 0px;
    max-height: 35px;
}

#ia-empty-guide .page-content .page .landpage .actions p {
    margin: 0;
}
.landpage summary {
    cursor: pointer;
}

#faq details {
    padding: 5px 10px;
}

.landpage .advanced-resources .btn .text {
    margin-left: 15px;
}

.light-theme .landpage header {
    background: linear-gradient(135deg, #3973aa, #0D47A1);
}

.light-theme #ia-empty-guide .landpage header p,
.light-theme #ia-empty-guide .landpage footer p {
    color: var(var(--text-button));
}

.light-theme .landpage section {
    background-color: var(--bg-card);
    color: var(--text);
}

.light-theme .landpage section h2 {
    color: var(--text);
}

/* Responsivo */
@media (max-width: 768px) {

    .socio-grid,
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .landpage header h1 {
        font-size: 2rem;
    }

    .landpage section h2 {
        font-size: 1.6rem;
    }

    .socio {
        max-width: 80%;
    }
}