/* =============================================================
   SOBRE.CSS - Estilos Específicos da Página Quem Somos
   Versão: 1.0 | Janeiro 2026
   
   Este arquivo contém APENAS os estilos específicos da página
   sobre-tiexames.php. Os estilos globais estão em global.css.
   ============================================================= */

/* =============================================================
   HERO - QUEM SOMOS (Layout 3 colunas)
   ============================================================= */
.hero-about {
    padding-top: 80px;
    background: var(--bg-white);
}

.hero-about-container {
    display: grid;
    grid-template-columns: 1.3fr auto 0.7fr;
    gap: 12px;
    align-items: start;
    padding: 60px 0 40px;
}

.hero-about-content {
    position: relative;
    max-width: 520px;
}

.hero-about-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
}

.hero-about-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-about-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-about-description {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-stats-intro {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 8px;
}

/* Stats Grid - Estilo Dark Navy */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hero-stat-card {
    background: var(--dark);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
}

.hero-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.688rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Founder Photo Center */
.hero-about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.founder-photo-wrapper img {
    width: 320px;
    height: auto;
    object-fit: contain;
}

/* Founder Quote Right */
.founder-quote-standalone {
    max-width: 340px;
    padding-top: 40px;
}

.founder-quote-standalone .quote-text {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.founder-quote-standalone .quote-body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.founder-signature-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-signature {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    color: var(--primary);
    transition: var(--transition);
}

.founder-linkedin-link:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.founder-linkedin-link svg {
    width: 16px;
    height: 16px;
}

/* =============================================================
   NOSSO DIFERENCIAL
   ============================================================= */
.ensinamos {
    background: var(--bg-light);
}

.ensinamos-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.ensinamos-content {
    padding-top: 0;
}

.ensinamos-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ensinamos-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ensinamos-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ensinamos-highlight {
    background: var(--bg-white);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: var(--shadow-sm);
}

.ensinamos-highlight p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Cards compactos */
.ensinamos-cards-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 0;
}

.ensinamos-right-column {
    padding-top: 52px;
}

.ensinamos-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ensinamos-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

.ensinamos-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ensinamos-card-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ensinamos-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.ensinamos-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ensinamos-card p {
    font-size: 0.813rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ensinamos-cta {
    grid-column: span 2;
    text-align: center;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient);
    color: var(--bg-white);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(83, 113, 245, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(83, 113, 245, 0.4);
    filter: brightness(1.05);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

/* =============================================================
   MISSÃO, VISÃO E VALORES
   ============================================================= */
.mvv {
    background: var(--bg-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mvv-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.mvv-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.mvv-card-label {
    font-size: 0.688rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.mvv-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.mvv-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Valores Accordion */
.valores-accordion {
    margin-top: 16px;
}

.valor-accordion-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.valor-accordion-item:hover {
    border-color: var(--primary-light);
}

.valor-accordion-item.active {
    border-color: var(--primary);
}

.valor-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.valor-accordion-trigger:hover {
    background: var(--accent-light);
}

.valor-accordion-number {
    width: 22px;
    height: 22px;
    background: var(--gradient);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.688rem;
    font-weight: 700;
    flex-shrink: 0;
}

.valor-accordion-title {
    flex: 1;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-primary);
}

.valor-accordion-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.valor-accordion-item.active .valor-accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.valor-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.valor-accordion-item.active .valor-accordion-content {
    max-height: 200px;
}

.valor-accordion-text {
    padding: 0 14px 14px;
    font-size: 0.813rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================================
   TIMELINE SIMPLILEARN STYLE
   ============================================================= */
.timeline-section {
    background: var(--bg-light);
    overflow: hidden;
    padding: 80px 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

.timeline-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.timeline-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-header p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Track */
.timeline-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: visible;
}

.timeline-track-container {
    position: relative;
    margin-bottom: 40px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
    margin-bottom: 8px;
}

.timeline-point:hover .timeline-dot {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.timeline-point.active .timeline-dot {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(83, 113, 245, 0.3);
}

.timeline-dot-label {
    display: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-white);
}

.timeline-point.active .timeline-dot-label {
    display: block;
}

.timeline-year {
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.timeline-point.active .timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Timeline Content Carousel */
.timeline-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    width: 100%;
}

.timeline-nav-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.timeline-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.timeline-nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.timeline-nav-btn:hover svg {
    color: var(--primary);
}

.timeline-cards-viewport {
    flex: 1;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.timeline-cards-track {
    display: flex;
    transition: transform 0.4s ease;
}

.timeline-content-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.timeline-content-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    word-wrap: break-word;
}

.timeline-content-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Timeline Mobile */
.timeline-mobile-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.timeline-progress {
    width: 100px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.timeline-mobile-arrows {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 12px;
}

.timeline-mobile-arrows .timeline-nav-btn {
    width: 40px;
    height: 40px;
}

/* =============================================================
   NOSSO TIME
   ============================================================= */
.team {
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.team-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.688rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.team-bio {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.team-social a {
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.team-social svg {
    width: 14px;
    height: 14px;
}

/* =============================================================
   PARCEIROS
   ============================================================= */
.parceiros {
    background: linear-gradient(135deg, #1a2854 0%, var(--dark) 100%);
    color: var(--bg-white);
}

.parceiros .section-title {
    color: var(--bg-white);
}

.parceiros-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.parceiro-card {
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.parceiro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.parceiro-badge {
    font-size: 0.688rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.parceiro-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.parceiro-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.parceiro-location {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.parceiro-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
}

/* =============================================================
   CONTATO
   ============================================================= */
.contato {
    background: var(--bg-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contato-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contato-info h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contato-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contato-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contato-channel:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contato-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-channel-icon.phone {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contato-channel-icon.email {
    background: var(--accent-light);
    color: var(--primary);
}

.contato-channel-icon svg {
    width: 26px;
    height: 26px;
}

.contato-channel-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contato-channel-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contato-channel-content a {
    color: var(--primary);
    font-weight: 600;
}

.contato-horario {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.contato-horario p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contato-horario strong {
    color: var(--text-primary);
}

/* Formulário */
.contato-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(83, 113, 245, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Messages */
.form-message {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.form-message.success::before {
    content: '✓ ';
    font-weight: bold;
}

.form-message.error::before {
    content: '⚠ ';
}

/* Honeypot - garantir invisibilidade total */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

/* Turnstile Container */
.turnstile-container {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

/* Mensagem de Sucesso com Envelope */
.success-message-box {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(83, 113, 245, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); 
    }
}

.success-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-message-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.success-message-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-message-box .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-decoration: none;
}

.success-message-box .btn-outline:hover {
    background: var(--primary);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Radio buttons */
.form-radio-group {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    justify-content: center;
}

.form-radio-label:hover {
    border-color: var(--primary);
}

.form-radio-label input {
    display: none;
}

.form-radio-label input:checked + .form-radio-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.form-radio-label input:checked + .form-radio-custom::after {
    opacity: 1;
}

.form-radio-label.selected {
    border-color: var(--primary);
    background: var(--accent-light);
}

.form-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.form-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bg-white);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.form-radio-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-radio-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.form-radio-label.selected .form-radio-icon {
    color: var(--primary);
}

/* Campo condicional */
.form-conditional {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-conditional.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient);
    color: var(--bg-white);
    font-size: 0.938rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(83, 113, 245, 0.3);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* =============================================================
   RESPONSIVE - PÁGINA SOBRE
   ============================================================= */
@media (max-width: 1024px) {
    .hero-about-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-about-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .hero-about-image {
        order: 2;
    }

    .founder-photo-wrapper img {
        width: 280px;
        margin: 0 auto;
    }

    .founder-quote-standalone {
        padding-top: 0;
        max-width: 100%;
        text-align: center;
        order: 3;
    }

    .founder-signature-row {
        justify-content: center;
    }

    .hero-stats-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .ensinamos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ensinamos-right-column {
        padding-top: 0;
    }

    .ensinamos-cta {
        grid-column: span 1;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .timeline-wrapper {
        padding: 0 16px;
    }

    .timeline-points {
        overflow-x: auto;
        padding-bottom: 16px;
        gap: 24px;
        justify-content: flex-start;
    }

    .timeline-carousel {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-cards-viewport {
        width: 100%;
        overflow: hidden;
    }

    .timeline-nav-btn.desktop-only {
        display: none;
    }

    .timeline-mobile-nav {
        display: flex;
    }

    .timeline-content-card {
        padding: 20px;
        width: 100%;
    }

    .timeline-content-card h3 {
        font-size: 1.125rem;
    }

    .timeline-content-card p {
        font-size: 0.875rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .parceiros-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ensinamos-cards {
        grid-template-columns: 1fr;
    }

    .ensinamos-cta {
        grid-column: span 1;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-radio-group {
        flex-direction: column;
    }

    .timeline-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}