:root {
    --blue: #0057b8;
    --orange: #ff9e1b;
    --pink: #ff4f81;
    --green: #2cc197;
    --red: #ff6159;
    --navy: #091b33;
    --white: #ffffff;
    --soft-gray: #f4f6fb;
    --mid-gray: #6f7485;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--soft-gray);
    color: var(--navy);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

header {
    background: var(--navy);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 12px 30px rgba(9, 27, 51, 0.35);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
}

.brand img {
    height: 52px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.hero {
    position: relative;
    padding: 120px 0 140px;
    color: var(--white);
    background: linear-gradient(120deg, rgba(9, 27, 51, 0.88), rgba(0, 87, 184, 0.82)),
        url('img/fundo.jpeg') center/cover no-repeat;
}

.hero__content {
    display: grid;
    gap: 24px;
    max-width: 640px;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    line-height: 1.15;
    margin: 0;
}

.hero p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
    background: var(--orange);
    color: var(--navy);
    box-shadow: 0 16px 40px rgba(255, 158, 27, 0.35);
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(255, 158, 27, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
}

section {
    padding: 96px 0;
}

.section-header {
    display: grid;
    gap: 12px;
    margin-bottom: 48px;
    text-align: center;
}

.section-header span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    color: var(--mid-gray);
}

.section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.6rem);
}

.section-header p {
    margin: 0;
    color: var(--mid-gray);
}

.proposta__content {
    display: grid;
    gap: 28px;
    background: var(--white);
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 30px 70px rgba(9, 27, 51, 0.1);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange);
}

.highlight {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.badge-list li {
    background: var(--white);
    color: var(--navy);
    border-left: 4px solid currentColor;
    padding: 12px 18px;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(9, 27, 51, 0.08);
}

.badge-list li:nth-child(1) { color: var(--orange); }
.badge-list li:nth-child(2) { color: var(--blue); }
.badge-list li:nth-child(3) { color: var(--pink); }
.badge-list li:nth-child(4) { color: var(--green); }

.card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(9, 27, 51, 0.08);
    display: grid;
    gap: 16px;
}

.card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.testimonial {
    background: linear-gradient(140deg, rgba(0, 87, 184, 0.9), rgba(255, 79, 129, 0.9));
    color: var(--white);
    border-radius: 28px;
    padding: 48px;
    display: grid;
    gap: 18px;
    box-shadow: 0 28px 70px rgba(9, 27, 51, 0.2);
}

.trilhas__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trilhas__card {
    border-radius: 24px;
    padding: 24px;
    background: var(--white);
    box-shadow: 0 20px 55px rgba(9, 27, 51, 0.08);
}

.trilhas__card h4 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.timeline {
    margin-top: 36px;
    border-left: 3px solid rgba(9, 27, 51, 0.1);
    padding-left: 24px;
    display: grid;
    gap: 18px;
}

.timeline__item {
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 158, 27, 0.25);
}

.pillars {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pillars li {
    padding: 14px 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(9, 27, 51, 0.07);
}

.pillars li span {
    font-weight: 600;
    margin-right: 8px;
}

.pillar--management { border-left: 4px solid var(--blue); }
.pillar--innovation { border-left: 4px solid var(--orange); }
.pillar--revolution { border-left: 4px solid var(--pink); }
.pillar--investment { border-left: 4px solid var(--green); }
.pillar--marketing { border-left: 4px solid var(--red); }

.planos {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan {
    background: var(--white);
    padding: 32px;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(9, 27, 51, 0.08);
    display: grid;
    gap: 12px;
}

.plan strong {
    font-size: 1.4rem;
}

.success-list,
.resources,
.contact-list,
.area-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.success-list li,
.resources li,
.contact-list li,
.area-list li {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(9, 27, 51, 0.07);
}

.contact-list li,
.area-list li {
    background: none;
    box-shadow: none;
    padding: 0;
}

.mentor-section {
    background: linear-gradient(135deg, rgba(255, 158, 27, 0.15), rgba(44, 193, 151, 0.15));
}

.mentor-highlight {
    display: grid;
    gap: 16px;
    background: var(--white);
    padding: 38px;
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(9, 27, 51, 0.12);
}

.unidades {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.unidade-card {
    background: var(--white);
    padding: 26px;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(9, 27, 51, 0.08);
}

.mascote-section {
    background: linear-gradient(145deg, rgba(0, 87, 184, 0.1), rgba(255, 79, 129, 0.1));
}

.mascote-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 32px;
}

form {
    display: grid;
    gap: 12px;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
}

input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(9, 27, 51, 0.15);
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 158, 27, 0.25);
}

button {
    font-family: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer a {
    color: rgba(255, 255, 255, 0.84);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer__bottom {
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 28px;
    background: #25d366;
    color: var(--white);
    border-radius: 999px;
    padding: 14px 22px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-wrap: wrap;
    }

    .hero {
        padding: 110px 0 120px;
    }

    section {
        padding: 72px 0;
    }
}

@media (max-width: 640px) {
    .hero__content {
        text-align: center;
        justify-items: center;
    }

    .proposta__content,
    .mentor-highlight,
    .testimonial {
        padding: 32px;
    }

    .whatsapp-btn {
        bottom: 18px;
        right: 16px;
    }
}
