/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    --bg: #050505;
    --surface: #090909;
    --surface-soft: #111111;
    --text: #f5f2ec;
    --muted: #a8a29e;
    --gold: #d4af37;
    --gold-soft: #efc76e;
    --border: rgba(255,255,255,0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 25%),
                radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 18%),
                var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
    background: #e96f00;
    color: white;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

header {
    background: rgba(8, 8, 8, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.btn-nav {
    min-width: 140px;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #f3d178);
    color: #090909;
    border: none;
    padding: 0.95rem 1.8rem;
    box-shadow: 0 18px 50px rgba(212,175,55,0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(212,175,55,0.22);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(212,175,55,0.65);
    padding: 0.95rem 1.8rem;
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.12);
}

.contact-link {
    border-color: rgba(255,255,255,0.25);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    height: 100vh;
    padding: 100px 24px 24px;
    background: rgba(9,9,9,0.98);
    backdrop-filter: blur(16px);
    transform: translateX(110%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1500;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    width: 100%;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    transition: background 0.25s ease;
}

.mobile-menu a:hover {
    background: rgba(212,175,55,0.12);
}

main {
    padding-top: 150px;
}

.hero {
    background:
        linear-gradient(180deg, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.85) 100%),
        url('img-hero.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.12), transparent 20%),
                radial-gradient(circle at 25% 80%, rgba(255,255,255,0.04), transparent 18%);
    pointer-events: none;
}

.hero-content,
.hero-stats,
.hero-choice-grid,
.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto 60px;
}

.hero-content {
    max-width: 680px;
    margin: 0;
}

.hero h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 640px;
    margin: 0 auto 2.25rem;
    font-size: 1.08rem;
    color: #d8d4ca;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.hero-choice-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.2rem 1.3rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    color: #f5f2ec;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-choice-card:hover,
.hero-choice-card:focus-visible {
    transform: translateY(-3px);
    background: rgba(212,175,55,0.14);
    border-color: rgba(212,175,55,0.35);
}

.hero-choice-card strong {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-choice-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin: 0.5rem 0;
}

.hero-choice-card span {
    color: #d8d4ca;
    font-weight: 600;
    line-height: 1.4;
}

.hero-choice-card-secondary {
    border-color: rgba(212,175,55,0.2);
}

@media (max-width: 720px) {
    .hero-choice-grid {
        grid-template-columns: 1fr;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: #c8c3b9;
}

section {
    padding: 90px 0;
}

section h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

section h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

section > p {
    color: #b0aca3;
    margin-bottom: 2.5rem;
}

.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-text p {
    color: #d1cbbf;
    margin-bottom: 1.35rem;
}

.about-right {
    display: grid;
    gap: 1.5rem;
}

.about-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 32px 90px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-features {
    display: grid;
    gap: 1.2rem;
}

.feature {
    padding: 1.4rem 1.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.feature-icon {
    font-size: 1.9rem;
}

.feature p {
    color: #cfc7bd;
}

.comparison {
    background:
        linear-gradient(180deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.88) 100%),
        url('img-resultados.png') center center / cover no-repeat;
    position: relative;
}

.comparison-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.comparison-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1rem;
    border-radius: 24px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0.95rem;
    align-items: center;
}

.comparison-copy h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
}

.comparison-copy p {
    color: #cfc7bb;
    line-height: 1.5;
    max-width: 500px;
}

.comparison-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.comparison-value {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    gap: 0.15rem 0.45rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0;
    min-height: auto;
    text-align: center;
    background: transparent;
    color: inherit;
}

.comparison-value .value {
    grid-column: 1 / 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.comparison-value .trend {
    grid-column: 2 / 3;
    grid-row: 1;
    font-size: 2rem;
    line-height: 1;
}

.comparison-value .label {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.25rem;
    color: #cfc7bb;
}

.comparison-value.hunterh,
.comparison-value.sozinho {
    background: transparent;
    border: none;
}

.comparison-value .value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.comparison-value .label {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.95;
}

.comparison-value .trend {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0.65rem;
    font-size: 1.35rem;
    line-height: 1;
}

.trend.positive {
    color: #0f9d58;
}

.trend.negative {
    color: #d23f4a;
}

@media (max-width: 900px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-values {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .comparison-values {
        grid-template-columns: 1fr;
    }
}

.services-executives,
.services-companies,
.courses,
.cta-section,
.companies,
footer {
    background: linear-gradient(180deg, rgba(9,9,9,0.95) 0%, rgba(15,15,15,0.95) 100%);
}

.content {
    background:
        linear-gradient(180deg, rgba(5,5,5,0.80) 0%, rgba(5,5,5,0.88) 100%),
        url('img-conteudo.png') center center / cover no-repeat;
    position: relative;
}

.services-executives,
.services-companies,
.courses,
.content,
.cta-section,
.companies {
    color: #e6e1d8;
}

.services-grid,
.courses-grid,
.content-grid,
.companies-grid,
.footer-offices,
.footer-content {
    display: grid;
    gap: 1.6rem;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    align-items: stretch;
    justify-items: stretch;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

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

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

.companies-carousel {
    position: relative;
}

.companies-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -12px;
    padding: 12px 0;
}

.companies-track-wrapper::-webkit-scrollbar {
    display: none;
}

.companies-grid {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    width: max-content;
    padding: 0 12px;
}

.companies-grid::after {
    content: '';
    flex: 0 0 12px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
    padding: 0 12px;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.55);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: none;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}

.carousel-button:hover,
.carousel-button:focus-visible {
    background: rgba(212,175,55,0.18);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.company-logo {
    padding: 1.8rem;
    text-align: center;
    font-weight: 700;
    color: #d1cbbf;
    border-radius: 20px;
    min-width: 180px;
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-width: 140px;
    max-height: 90px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 980px) {
    .companies-grid {
        gap: 0.9rem;
    }

    .company-logo {
        min-width: 170px;
        flex: 0 0 190px;
    }
}

@media (max-width: 720px) {
    .companies-track-wrapper {
        margin: 0 -8px;
        padding: 10px 0;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .company-logo {
        min-width: 160px;
        flex: 0 0 180px;
    }
}

.service-card,
.course-card,
.content-card,
.company-logo,
.business-school,
.footer-brand,
.office {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
}

.footer-brand,
.footer-contact-block .office {
    background: transparent;
    border: none;
}

.service-card {
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,0.16);
    color: var(--gold);
    border-radius: 20px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.service-card p {
    color: #d1cbbf;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding-left: 1.8rem;
    margin-bottom: 0.9rem;
    position: relative;
    color: #cfc7bb;
}

.service-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    background: var(--gold);
    border-radius: 50%;
}

.company-logo {
    padding: 1.8rem;
    text-align: center;
    font-weight: 700;
    color: #d1cbbf;
    border-radius: 20px;
}

.course-card {
    position: relative;
    padding: 2.2rem 2rem 2rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #090909;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.course-card h4,
.business-school h4,
.content-card h4,
.office h4 {
    color: var(--text);
    margin-top: 1.3rem;
    margin-bottom: 1rem;
}

.course-card p {
    color: #d1cbbf;
    line-height: 1.75;
    flex-grow: 1;
}

.course-link,
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
}

.course-link::after,
.read-more::after {
    content: '→';
    font-size: 1rem;
}

.business-school {
    padding: 2.6rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    margin-top: 2rem;
}

.content-card {
    padding: 2rem;
    border-left: 4px solid var(--gold);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-meta {
    color: #a9a196;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.category {
    background: rgba(212,175,55,0.13);
    color: var(--gold);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
}

.content-card h4 {
    margin: 1rem 0;
    font-size: 1.3rem;
}

.content-card p {
    color: #d1cbbf;
    line-height: 1.8;
}

.cta-section {
    padding: 100px 0 120px;
}

.cta-section .container.cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.cta-copy {
    display: grid;
    gap: 1.5rem;
}

.cta-visual {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 32px 90px rgba(0,0,0,0.22);
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.cta-section > p {
    max-width: 620px;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cta-feature {
    padding: 1.2rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.cta-feature .feature-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,0.18);
    border-radius: 16px;
    font-size: 1.3rem;
}

.cta-feature span {
    font-size: 0.98rem;
    color: #e6e1d8;
}

footer {
    padding: 2.8rem 0 1.5rem;
    color: #a9a196;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 0.75rem;
}

.footer-brand h3 {
    color: var(--gold);
}

.footer-brand p {
    color: #c3bdae;
    max-width: 360px;
}

.contact-info p {
    color: #d1c0a2;
    font-weight: 600;
    margin: 0.25rem 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    color: #d1c0a2;
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background: rgba(212,175,55,0.14);
    color: #fff;
}

.footer-links-block,
.footer-contact-block {
    display: grid;
    gap: 0.75rem;
}

.footer-links-block h4,
.footer-contact-block h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.footer-links-block a {
    color: #d1c0a2;
    text-decoration: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    transition: color 0.3s ease;
}

.footer-links-block a:hover {
    color: #fff;
}

.footer-contact-block .office {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.footer-contact-block .office strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--gold);
}

.footer-contact-block .office p {
    color: #c3bdae;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c3bdae;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .about-content,
    .footer-content,
    .comparison-bars {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .comparison-grid,
    .cta-section .container,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-card,
    .course-card,
    .content-card,
    .business-school,
    .cta-feature,
    .company-logo,
    .office {
        padding: 1.4rem;
    }

    .service-card {
        min-height: auto;
    }

    .course-card {
        min-height: auto;
    }

    .content-card {
        min-height: auto;
    }

    .cta-section {
        padding: 70px 0 90px;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-grid,
    .courses-grid,
    .content-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .nav {
        padding: 0.8rem 16px;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .service-card,
    .course-card,
    .content-card,
    .business-school,
    .cta-feature,
    .company-logo,
    .office {
        padding: 1.2rem;
    }
}

@media (max-width: 540px) {
    .topbar {
        padding: 0.75rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.rc-legend {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.rc-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.rc-gold  { background: linear-gradient(135deg, #c69c1b, #edc75d); }
.rc-gray  { background: rgba(255,255,255,0.2); }
.rc-legend span:not(.rc-legend-dot) { margin-right: 1rem; }

.rc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.rc-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 1.5rem;
    /* entrada suave por card */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.rc-card.rc-visible {
    opacity: 1;
    transform: translateY(0);
}
/* stagger por index */
.rc-card[data-index="1"] { transition-delay: 0.1s; }
.rc-card[data-index="2"] { transition-delay: 0.2s; }
.rc-card[data-index="3"] { transition-delay: 0.3s; }

.rc-card-header {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}
.rc-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.rc-card-header h4 {
    color: var(--text);
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}
.rc-card-header p {
    color: #cfc7bb;
    font-size: 0.83rem;
    line-height: 1.5;
    margin: 0;
}

.rc-bars { display: flex; flex-direction: column; gap: 0.85rem; }

.rc-bar-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.rc-bar-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}
.rc-bar-label.muted { color: var(--muted); }

.rc-bar-track {
    width: 100%;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rc-bar-fill {
    height: 100%;
    width: 0%;           /* começa em 0 — JS anima para data-value% */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.rc-bar-gold {
    background: linear-gradient(90deg, #c69c1b 0%, #edc75d 100%);
}
.rc-bar-dim {
    background: rgba(255,255,255,0.16);
}

.rc-bar-pct {
    font-size: 0.8rem;
    font-weight: 800;
    color: #090909;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease 0.9s;
}
.rc-bar-dim .rc-bar-pct {
    color: var(--text);
}
.rc-bar-fill.rc-animated .rc-bar-pct {
    opacity: 1;
}

@media (max-width: 860px) {
    .rc-grid { grid-template-columns: 1fr; }
}