/* Versão dos estilos para cache busting: 20250301 */

@font-face {
    font-family: 'Nasa';
    src: url('public/fonts/Nasa.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #0066cc;
    --accent-orange: #ff6b35;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* Mobile: evita zoom de texto no iOS e melhora toque */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
    tap-highlight-color: rgba(0, 0, 0, 0.05);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-wrapper > .nav-menu {
    margin-left: auto;
    margin-right: 0;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Nasa', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
}

.logo-text .letter {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.3s ease,
                text-shadow 0.3s ease;
    transform-origin: center bottom;
}

.logo:hover .letter {
    color: var(--accent-orange);
}

.logo:hover .letter:nth-child(1) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0s;
}

.logo:hover .letter:nth-child(2) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.03s;
}

.logo:hover .letter:nth-child(3) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.06s;
}

.logo:hover .letter:nth-child(4) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.09s;
}

.logo:hover .letter:nth-child(5) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.12s;
}

.logo:hover .letter:nth-child(6) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.15s;
}

.logo:hover .letter:nth-child(7) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.18s;
}

.logo:hover .letter:nth-child(8) {
    animation: letterWave 0.5s ease forwards;
    animation-delay: 0.21s;
}

@keyframes letterWave {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-button-faca-parte {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    margin-left: 0;
}

.nav-button-faca-parte:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
    background: #0a0a0a;
    cursor: pointer;
}

.hero-video-bg .hero-buttons,
.hero-video-bg .hero-buttons a {
    cursor: pointer;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-centered {
    justify-content: center;
}

.hero-text-center {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title.hero-title-large {
    font-family: 'Nasa', 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-subtitle-center {
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.75);
    z-index: 1;
}

.hero-video-bg .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    color: var(--secondary-color);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}


/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Troféus Section */
.trofes-section {
    background: var(--bg-light);
}

.frc-logo {
    text-align: center;
    margin-top: 2rem;
}

.frc-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Robôs Section */
.robos-section {
    background: var(--secondary-color);
}

.robos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.robo-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.robo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.robo-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.robo-info {
    padding: 2rem;
}

.robo-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.robo-season {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.robo-number {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.robo-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.robo-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.robo-link:hover {
    color: #0052a3;
    transform: translateX(5px);
}

.robo-image-placeholder {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Patrocinadores Section */
.patrocinadores-section {
    background: var(--bg-light);
    text-align: center;
    padding: 3rem 0;
}

.patrocinadores-section .container {
    display: flex;
    justify-content: center;
}

.patrocinar-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.patrocinar-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.patrocinadores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    margin-top: 1.5rem;
    width: 900px;
    max-width: 100%;
}

.patrocinador-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
    width: 150px;
}

a.patrocinador-logo {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.patrocinador-logo img {
    max-width: 150px;
    max-height: 75px;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: var(--transition);
}

.patrocinador-logo img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.logo-placeholder {
    width: 200px;
    height: 100px;
    background: var(--secondary-color);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.logo-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Nossas Equipes Section */
/* Recadinho da Starbots Section */
.recadinho-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.recadinho-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recadinho-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 30px;
}

.recadinho-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.recadinho-video-wrapper {
    max-width: 350px;
    margin: 0 auto;
}

/* Container vertical 9:16 — proporção natural do vídeo em celular, sem esticar */
.recadinho-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.recadinho-video-container video,
.recadinho-video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* contain = mostra o vídeo inteiro na proporção correta, sem distorcer */
.recadinho-video-container video {
    object-fit: contain;
    object-position: center;
}

/* Indicador de site inclusivo junto aos vídeos */
.video-inclusivo-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.video-inclusivo-indicator img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.video-inclusivo-indicator span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.recadinho-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.recadinho-video-placeholder svg {
    opacity: 0.5;
}

.recadinho-video-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .recadinho-title {
        font-size: 1.8rem;
    }

    .recadinho-video-wrapper {
        max-width: 280px;
    }

    .recadinho-video-container video {
        object-fit: cover;
        object-position: center;
    }

    .recadinho-video-container iframe {
        inset: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 116%;
        height: 100%;
    }
}

.nossas-equipes-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.equipes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.equipes-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.equipes-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.equipes-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.equipes-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.equipe-card {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}

.equipe-card[data-equipe="fll"]:hover {
    border-color: #2196f3;
    transform: translateY(-2px);
}

.equipe-card[data-equipe="ftc"]:hover {
    border-color: #ff5c00;
    transform: translateY(-2px);
}

.equipe-card[data-equipe="frc"]:hover {
    border-color: #00acc1;
    transform: translateY(-2px);
}

/* Cores das equipes */
.equipe-card[data-equipe="fll"].active {
    background: #e3f2fd;
    border-color: #2196f3;
    border-width: 3px;
    color: #2196f3;
}

.equipe-card[data-equipe="ftc"].active {
    background: #fff5f5;
    border-color: #ff5c00;
    border-width: 3px;
    color: #ff5c00;
}

.equipe-card[data-equipe="frc"].active {
    background: #e0f7fa;
    border-color: #00acc1;
    border-width: 3px;
    color: #00acc1;
}

.equipe-content {
    position: relative;
    min-height: 400px;
}

.equipe-details {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.equipe-details.active {
    display: block;
}

.equipe-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.equipe-details-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.equipe-details-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.equipe-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.equipe-details-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    position: relative;
}

.equipe-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.equipe-image:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
}

/* Fundo 3D colorido para cada equipe */
#fll-content .equipe-details-visual::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 50%, #1565c0 100%);
    border-radius: 20px;
    transform: rotateY(5deg) rotateX(-2deg) translateZ(-20px);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.3);
}

#fll-content .equipe-image {
    object-fit: cover;
    object-position: center;
    transform: rotateY(-5deg) rotateX(2deg);
}

#ftc-content .equipe-details-visual::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #ff5c00 0%, #ff6b35 50%, #e65100 100%);
    border-radius: 20px;
    transform: rotateY(5deg) rotateX(-2deg) translateZ(-20px);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(255, 92, 0, 0.3);
}

#frc-content .equipe-details-visual::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #00acc1 0%, #0097a7 50%, #00838f 100%);
    border-radius: 20px;
    transform: rotateY(5deg) rotateX(-2deg) translateZ(-20px);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 172, 193, 0.3);
}

@media (max-width: 768px) {
    .equipe-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipes-title {
        font-size: 2rem;
    }
    
    .equipe-card {
        min-width: 150px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Impacto Section */
.impacto-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.impacto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.impacto-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    max-width: 1000px;
    margin: 0 auto;
}

.impacto-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.impacto-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    opacity: 0.95;
}

.impacto-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--secondary-color);
    border-radius: 15px 15px 0 0;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    border-radius: 0 0 15px 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .impacto-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .impacto-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .impacto-title {
        font-size: 2rem;
    }
    
    .impacto-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .impacto-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
}

/* Projetos Section */
.projetos-section {
    background: var(--secondary-color);
}

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

.projeto-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.projeto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.projeto-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.projeto-title {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.logo-placeholder-large {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.footer-image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-button-faca-parte {
        display: inline-block;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-label {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.01em;
    }

    .hero-title.hero-title-large {
        font-size: 3.5rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }


    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .robos-grid,
    .projetos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
    }

    .hero-content-wrapper {
        padding: 2rem 1rem;
    }

    .hero-video-bg .hero-buttons .cta-button,
    .hero-video-bg .hero-buttons .cta-button-outline {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .hero-label {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }


    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    section {
        padding: 3rem 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   SISTEMA DE ANIMAÇÕES - TWEEN
   ============================================ */

/* Variáveis de animação */
:root {
    --anim-duration: 0.8s;
    --anim-duration-fast: 0.5s;
    --anim-duration-slow: 1.2s;
    --anim-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --anim-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --anim-easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado inicial - elementos ocultos antes de animar */
.animate-on-scroll,
.animate-on-load {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing);
}

/* Estado animado - quando o elemento entra na viewport */
.animate-on-scroll.animated,
.animate-on-load.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Variações de animação */
.animate-fade {
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-easing);
}
.animate-fade.animated {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing);
}
.animate-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-down {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing);
}
.animate-slide-down.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing);
}
.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing);
}
.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--anim-duration) var(--anim-easing-bounce),
                transform var(--anim-duration) var(--anim-easing-bounce);
}
.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity var(--anim-duration) var(--anim-easing-bounce),
                transform var(--anim-duration) var(--anim-easing-bounce);
}
.animate-scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing-bounce);
}
.animate-rotate.animated {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Delays escalonados para efeito cascata */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }
.delay-7 { transition-delay: 0.7s !important; }
.delay-8 { transition-delay: 0.8s !important; }

/* Animações de entrada para a página */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animações específicas para elementos da página */
.hero {
    animation: fadeIn 1s var(--anim-easing);
}

.hero-label {
    animation: fadeInUp 0.8s var(--anim-easing) 0.1s both;
}

.hero-title {
    animation: fadeInUp 0.8s var(--anim-easing) 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s var(--anim-easing) 0.4s both;
}

/* Animações sequenciais para hero com vídeo */
.hero-video-bg .hero-title.hero-title-large {
    animation: heroFadeIn 1s ease both;
}

.hero-video-bg .hero-subtitle {
    animation: heroFadeIn 0.8s ease 1s both;
}

.hero-video-bg .hero-buttons {
    animation: heroFadeIn 0.8s ease 1.6s both;
}

/* Aviso "Vídeo em breve" no fundo do vídeo do hero (igual às outras páginas) */
.hero-video-aviso-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: heroVideoAvisoFadeIn 0.8s ease 1.8s both;
}

@keyframes heroVideoAvisoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-video-aviso-badge.recadinho-video-placeholder {
    position: absolute;
    top: auto;
    left: 50%;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
}

.hero-video-aviso-badge svg {
    width: 20px;
    height: 20px;
}

.hero-video-aviso-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    animation: fadeIn 0.6s var(--anim-easing);
}

.page-title {
    animation: fadeInUp 0.8s var(--anim-easing) 0.1s both;
}

/* Cards com animação */
.robo-card,
.projeto-card,
.temporada-card,
.material-card,
.modalidade-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--anim-duration) var(--anim-easing),
                transform var(--anim-duration) var(--anim-easing),
                box-shadow 0.3s ease;
}

.robo-card.animated,
.projeto-card.animated,
.temporada-card.animated,
.material-card.animated,
.modalidade-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section titles com animação */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--anim-easing),
                transform 0.6s var(--anim-easing);
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Valores list items com cascata */
.valores-list li {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s var(--anim-easing),
                transform 0.5s var(--anim-easing);
}

.valores-list li.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Premio items com cascata */
.premio-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--anim-easing),
                transform 0.5s var(--anim-easing);
}

.premio-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Afonso section com animação especial */
.afonso-section {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--anim-easing),
                transform 0.8s var(--anim-easing);
}

.afonso-section.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Contato section com animação */
.contato-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--anim-easing),
                transform 0.8s var(--anim-easing);
}

.contato-section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button com animação de hover melhorada */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--anim-easing),
                box-shadow 0.3s var(--anim-easing),
                background 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer com animação */
.footer {
    opacity: 0;
    transition: opacity 0.8s var(--anim-easing);
}

.footer.animated {
    opacity: 1;
}

/* Efeito Ripple para botões */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Transição suave para cards no hover */
.temporada-card,
.material-card,
.modalidade-card {
    position: relative;
    overflow: hidden;
}

.temporada-card::before,
.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.temporada-card:hover::before,
.material-card:hover::before {
    left: 100%;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--secondary-color);
    text-align: center;
}

.page-title {
    font-family: 'Nasa', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Hero Section (Quem Somos) */
.about-hero-section {
    margin-top: 80px;
    padding: 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    position: relative;
}

.about-hero-content {
    background: var(--secondary-color);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: var(--text-light);
}

.breadcrumb-current {
    color: #d4af37;
    font-weight: 600;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.about-hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
}

.about-hero-image {
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    border-radius: 16px;
    overflow: visible;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-hero-logo-overlay {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 3;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid var(--secondary-color);
}

.logo-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-circle-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-content {
        padding: 3rem 2rem;
    }

    .about-hero-image {
        padding: 2rem;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-logo-overlay {
        bottom: -20px;
        left: -20px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        margin-top: 70px;
    }

    .about-hero-content {
        padding: 2rem 1.5rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-hero-image {
        padding: 1.5rem;
        min-height: 300px;
    }

    .about-hero-logo-overlay {
        bottom: -15px;
        left: -15px;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-circle-icon {
        width: 35px;
        height: 35px;
    }

    .logo-circle-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* About Description & Stats Section */
.about-description-stats-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.about-description-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-description-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--primary-color);
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.about-description-text .text-highlight {
    font-weight: 600;
}

.about-description-text .text-light {
    color: #999999;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-description-stats-section {
        padding: 3rem 0;
    }

    .about-description-content {
        margin-bottom: 3rem;
    }

    .about-description-text {
        font-size: 1rem;
        line-height: 1.8;
    }

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

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-stat-number {
        font-size: 2.2rem;
    }
}

/* Our Mission Section */
.our-mission-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-images {
    position: relative;
}

.mission-images-grid {
    position: relative;
    min-height: 500px;
}

.mission-image-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    z-index: 1;
}

.mission-image-top img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 2;
}

.mission-image-bottom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-afonso-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-afonso-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mission-content {
    padding: 1rem 0;
}

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mission-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.mission-values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.mission-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.mission-values-list .check-icon {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-images-grid {
        min-height: 400px;
    }

    .mission-image-top {
        width: 55%;
    }

    .mission-image-top img {
        height: 220px;
    }

    .mission-image-bottom {
        width: 65%;
    }

    .mission-image-bottom img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .our-mission-section {
        padding: 3rem 0;
    }

    .mission-images-grid {
        min-height: 350px;
    }

    .mission-image-top {
        width: 60%;
    }

    .mission-image-top img {
        height: 180px;
    }

    .mission-image-bottom {
        width: 70%;
    }

    .mission-image-bottom img {
        height: 180px;
    }

    .mission-afonso-overlay {
        width: 80px;
        height: 80px;
        padding: 8px;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-description {
        font-size: 0.95rem;
    }

    .mission-values-list li {
        font-size: 0.95rem;
    }
}

/* Legacy Quem Somos Section (keeping for compatibility) */
.sobre-section {
    background: var(--secondary-color);
}

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

.text-content .section-description {
    text-align: left;
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.afonso-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.afonso-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.afonso-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

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

.afonso-text {
    text-align: center;
    color: var(--text-color);
    line-height: 1.8;
}

/* Premiações Section */
.premiacoes-section {
    background: var(--bg-light);
}

.temporadas-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.temporada-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.temporada-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.temporada-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.premios-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premio-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.premio-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.premio-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.robo-info-card {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
}

.robo-name-temp {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   AWARDS PAGE - MODERN DESIGN
   ============================================ */

/* Awards Page Hero */
.awards-page-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.awards-page-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.awards-page-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.awards-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.awards-page-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

.awards-page-hero-stats {
    display: flex;
    gap: 2rem;
}

.awards-hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-width: 100px;
}

.awards-hero-stat.highlight {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
}

.awards-hero-stat.highlight .awards-hero-stat-number,
.awards-hero-stat.highlight .awards-hero-stat-label {
    color: var(--secondary-color);
}

.awards-hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.awards-hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Awards Showcase Section - Layout igual à imagem */
.awards-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.awards-showcase-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Lado esquerdo - Info */
.awards-info-side {
    position: sticky;
    top: 120px;
}

.awards-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.awards-info-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.awards-nav-arrows {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.awards-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.awards-nav-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.awards-nav-btn.next {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--secondary-color);
}

.awards-nav-btn.next:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

.awards-season-indicator {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.awards-season-current {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lado direito - Cards */
.awards-cards-side {
    position: relative;
}

.awards-cards-container {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    animation: fadeInCards 0.4s ease;
}

.awards-cards-container.active {
    display: grid;
}

@keyframes fadeInCards {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card principal grande */
.award-card-main {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-card-main.international {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-color: rgba(102, 126, 234, 0.15);
}

.award-intl-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.award-badge-hex {
    width: 100px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.award-badge-hex img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.award-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.award-card-event {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Grid de cards pequenos */
.awards-cards-small-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-card-small {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-badge-hex-small {
    width: 45px;
    height: 55px;
    margin-bottom: 0.75rem;
}

.award-badge-hex-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-card-small-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.award-card-small-event {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0;
}

/* Awards Page Responsive */
@media (max-width: 1024px) {
    .awards-page-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .awards-page-hero-stats {
        justify-content: flex-start;
    }

    .awards-showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .awards-info-side {
        position: static;
        text-align: center;
    }

    .awards-nav-arrows {
        justify-content: center;
    }

    .awards-season-indicator {
        text-align: center;
    }

    .awards-cards-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .awards-page-hero {
        margin-top: 70px;
        padding: 3rem 0;
    }

    .awards-page-title {
        font-size: 2rem;
    }

    .awards-page-description {
        font-size: 1rem;
    }

    .awards-page-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .awards-hero-stat {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .awards-hero-stat-number {
        font-size: 2rem;
    }

    .awards-info-title {
        font-size: 2rem;
    }

    .awards-cards-container {
        grid-template-columns: 1fr;
    }

    .award-card-main {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .award-badge-hex {
        width: 80px;
        height: 100px;
    }

    .award-card-title {
        font-size: 1.2rem;
    }

    .awards-cards-small-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .award-card-small {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .awards-cards-small-grid {
        grid-template-columns: 1fr;
    }

    .award-card-main {
        min-height: 250px;
    }
}

/* ============================================
   Awards Fortune Style Section (like print)
   ============================================ */

.awards-fortune-section {
    margin-top: 80px;
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.awards-fortune-header {
    max-width: 900px;
    margin-bottom: 4rem;
}

.awards-fortune-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.awards-fortune-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.awards-fortune-intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    max-width: 850px;
}

/* Year Block - Layout with Image */
.awards-year-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.awards-year-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.awards-year-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Card: imagem à esquerda, conteúdo à direita (design da print) */
.awards-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Coluna esquerda: foto do robô/temporada */
.awards-card-image {
    position: relative;
    perspective: 1000px;
}

.awards-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.awards-image-container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.awards-image-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    transform: rotate(2deg);
}

.awards-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Variações de inclinação para cada temporada */
.awards-year-block:nth-child(odd) .awards-image-container {
    transform: rotate(-2deg);
}

.awards-year-block:nth-child(odd) .awards-image-container:hover {
    transform: rotate(-1deg) translateY(-5px);
}

.awards-year-block:nth-child(odd) .awards-image-container::before {
    transform: rotate(2deg);
}

.awards-year-block:nth-child(even) .awards-image-container {
    transform: rotate(2.5deg);
}

.awards-year-block:nth-child(even) .awards-image-container:hover {
    transform: rotate(1.5deg) translateY(-5px);
}

.awards-year-block:nth-child(even) .awards-image-container::before {
    transform: rotate(-2.5deg);
}

/* Variações específicas para mais dinamismo */
.awards-year-block:nth-child(3n) .awards-image-container {
    transform: rotate(-3deg);
}

.awards-year-block:nth-child(3n) .awards-image-container:hover {
    transform: rotate(-2deg) translateY(-5px);
}

.awards-year-block:nth-child(3n) .awards-image-container::before {
    transform: rotate(3deg);
}

.awards-year-block:nth-child(4n) .awards-image-container {
    transform: rotate(1.5deg);
}

.awards-year-block:nth-child(4n) .awards-image-container:hover {
    transform: rotate(0.5deg) translateY(-5px);
}

.awards-year-block:nth-child(4n) .awards-image-container::before {
    transform: rotate(-1.5deg);
}

/* Coluna direita: nome da temporada + nomes das premiações + fotos embaixo */
.awards-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 100%;
}

.awards-season-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.awards-names-list {
    margin: 0;
    flex: 1;
    padding-left: 1.25rem;
    position: relative;
}

.awards-names-list p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.75;
    margin: 0 0 0.75rem 0;
    position: relative;
}

.awards-names-list p::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-orange, #e85a2c);
    opacity: 0.85;
}

.awards-names-list p:last-child {
    margin-bottom: 0;
}

.award-intl-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0077b6;
    background: #e6f4fa;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-left: 0.35rem;
    vertical-align: middle;
}

/* Fotos das premiações fixas na parte de baixo do card - até 3 silhuetas por linha */
.awards-photos {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
    flex-shrink: 0;
    justify-content: end;
}

.awards-photos img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Responsive Awards Fortune */
@media (max-width: 1024px) {
    .awards-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .awards-card-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .awards-image-container {
        transform: rotate(-1.5deg);
        padding: 1.25rem;
    }

    .awards-image-container::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
}

@media (max-width: 768px) {
    .awards-fortune-section {
        margin-top: 70px;
        padding: 3rem 0;
    }

    .awards-fortune-title {
        font-size: 2rem;
    }

    .awards-fortune-subtitle {
        font-size: 1.1rem;
    }

    .awards-year-title {
        font-size: 1.25rem;
    }

    .awards-year-block {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .awards-season-name {
        font-size: 1.35rem;
    }

    .awards-names-list p {
        font-size: 1.05rem;
    }

    .awards-photos {
        grid-template-columns: repeat(3, 64px);
    }

    .awards-photos img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .awards-fortune-title {
        font-size: 1.75rem;
    }

    .awards-image-container {
        transform: rotate(-1deg);
        padding: 1rem;
    }

    .awards-image-container::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }

    .awards-season-name {
        font-size: 1.2rem;
    }

    .awards-names-list p {
        font-size: 1rem;
    }

    .awards-names-list {
        padding-left: 1rem;
    }

    .awards-names-list p::before {
        left: -1rem;
        width: 4px;
        height: 4px;
    }

    .awards-photos {
        grid-template-columns: repeat(3, 56px);
    }

    .awards-photos img {
        width: 56px;
        height: 56px;
    }
}

/* About FIRST Hero Section */
.about-first-hero {
    margin-top: 80px;
    padding: 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about-first-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    position: relative;
}

.about-first-content {
    background: var(--secondary-color);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.about-first-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.about-first-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-first-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-first-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.about-first-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-first-link:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.about-first-video {
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.first-logo-wrapper {
    position: relative;
    max-width: 550px;
    width: 90%;
}

.first-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: var(--accent-color);
    border-radius: 16px;
    z-index: 1;
}

.first-logo-image {
    position: relative;
    z-index: 2;
    background: var(--secondary-color);
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-player-wrapper {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.video-player-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-player-header span {
    font-weight: 500;
    font-size: 0.95rem;
}

.video-close-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-close-btn:hover {
    opacity: 0.7;
}

.video-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

.video-thumbnail {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-first-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-first-content {
        padding: 3rem 2rem;
    }

    .about-first-video {
        padding: 2rem;
        min-height: 400px;
    }

    .about-first-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-first-hero {
        margin-top: 70px;
    }

    .about-first-content {
        padding: 2rem 1.5rem;
    }

    .about-first-title {
        font-size: 2rem;
    }

    .about-first-description {
        font-size: 1rem;
    }

    .about-first-video {
        padding: 1.5rem;
        min-height: 300px;
    }

    .video-player-wrapper {
        max-width: 100%;
    }
}

/* Core Values Section */
.core-values-section {
    background: var(--secondary-color);
    padding: 0 0 5rem 0;
    position: relative;
}

.core-values-header-bar {
    height: 6px;
    background: var(--accent-color);
    width: 100%;
    margin-bottom: 3rem;
}

.core-values-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.core-values-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.core-values-philosophy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.core-values-philosophy em {
    font-style: italic;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.core-value-card {
    text-align: left;
    padding: 1rem;
}

.core-value-icon {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.core-value-icon svg {
    width: 48px;
    height: 48px;
}

.core-value-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.core-value-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .core-values-title {
        font-size: 2rem;
    }

    .core-values-description,
    .core-values-philosophy {
        font-size: 1rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .core-value-card {
        text-align: center;
    }

    .core-value-icon {
        display: flex;
        justify-content: center;
    }
}

/* Philosophy Section (Gracious Professionalism) */
.philosophy-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-image {
    position: relative;
}

.philosophy-image-container {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.philosophy-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: #6b9ac4;
    border-radius: 12px;
    z-index: 0;
}

.philosophy-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-content {
    padding: 1rem 0;
}

.philosophy-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.philosophy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.philosophy-description em {
    font-style: italic;
}

.philosophy-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.philosophy-note em {
    font-style: italic;
}

@media (max-width: 1024px) {
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-image-container::before {
        top: 0;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 3rem 0;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-description {
        font-size: 1rem;
    }

    .philosophy-image-container::before {
        top: 0;
        left: 8px;
        right: -8px;
        bottom: -8px;
    }
}

/* Philosophy Reverse (Coopertition - texto à esquerda, imagem à direita) */
.philosophy-reverse .philosophy-wrapper {
    grid-template-columns: 1fr 1fr;
}

.philosophy-reverse .philosophy-content {
    order: 1;
}

.philosophy-reverse .philosophy-image {
    order: 2;
}

.philosophy-reverse .philosophy-image-container::before {
    left: -15px;
    right: 15px;
}

@media (max-width: 1024px) {
    .philosophy-reverse .philosophy-wrapper {
        grid-template-columns: 1fr;
    }

    .philosophy-reverse .philosophy-content {
        order: 2;
    }

    .philosophy-reverse .philosophy-image {
        order: 1;
    }

    .philosophy-reverse .philosophy-image-container::before {
        left: -10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .philosophy-reverse .philosophy-image-container::before {
        left: -8px;
        right: 8px;
    }
}

/* Season Section (Temporada Atual) */
.season-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d2240 100%);
    padding: 5rem 0;
    position: relative;
    overflow: visible;
}

.season-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E") repeat;
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.season-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.season-content {
    padding: 1rem 0;
}

.season-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4db8ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.season-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(77, 184, 255, 0.3);
}

.season-title sup {
    font-size: 0.4em;
    vertical-align: super;
}

.season-subtitle {
    font-size: 1rem;
    color: #7eb8e0;
    font-style: italic;
    margin-bottom: 2rem;
}

.season-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d9eb;
    margin-bottom: 1.5rem;
}

.season-description strong {
    color: #ffffff;
}

.season-link {
    display: inline-flex;
    align-items: center;
    color: #4db8ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.season-link:hover {
    color: #7ed0ff;
}

.season-video {
    position: relative;
    padding: 20px;
}

.season-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    padding: 0;
    aspect-ratio: 16 / 9;
    box-shadow: 
        0 25px 80px 0 rgba(0, 0, 0, 0.7),
        0 15px 40px -5px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-video-container:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 35px 100px 0 rgba(0, 0, 0, 0.8),
        0 20px 50px -5px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.season-video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .season-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .season-video {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .season-section {
        padding: 3rem 0;
    }

    .season-title {
        font-size: 2.4rem;
    }

    .season-description {
        font-size: 1rem;
    }
}

/* Sobre a FIRST Section */
.first-section {
    background: var(--secondary-color);
}

.first-content {
    max-width: 1000px;
    margin: 0 auto;
}

.first-content .section-description {
    text-align: left;
    margin-bottom: 2rem;
}

.valores-first {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.valores-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.valores-list li {
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

/* Values Section (New Design) */
.values-section {
    background: linear-gradient(135deg, #fff8f5 0%, #f5f5f5 50%, #f5f8ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.values-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.3;
}

.values-decoration-left {
    top: 10%;
    left: -50px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

.values-decoration-right {
    bottom: 10%;
    right: -50px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.values-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.values-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-orange);
    color: var(--secondary-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.values-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.values-cta span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.values-cta:hover span {
    transform: translateX(3px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-orange);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 3rem 0;
    }

    .values-title {
        font-size: 2rem;
    }

    .values-description {
        font-size: 1rem;
    }

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

    .value-card {
        padding: 1.5rem;
    }

    .values-header {
        margin-bottom: 2.5rem;
    }
}

.modalidade-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.modalidade-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.modalidade-desc {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.fll-divisoes,
.premiacoes-modalidade {
    margin-top: 1.5rem;
}

.fll-divisoes h4,
.premiacoes-modalidade h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.fll-divisoes ul,
.premiacoes-modalidade ul {
    list-style: none;
    padding-left: 0;
}

.fll-divisoes ul li,
.premiacoes-modalidade ul li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    color: var(--text-color);
}

/* ============================================
   MENTORIAS PAGE - MODERN DESIGN
   ============================================ */

/* Mentorias Hero Section */
.mentorias-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mentorias-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.mentorias-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.mentorias-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 30px;
}

.mentorias-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.mentorias-hero-title em {
    font-style: normal;
    color: var(--accent-orange);
}

.mentorias-hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2rem;
}

.mentorias-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mentorias-hero-actions .cta-button {
    margin-top: 0;
}

.mentorias-hero-actions .cta-button-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin-top: 0;
}

.mentorias-hero-actions .cta-button-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.mentorias-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentorias-icon-wrapper {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mentorias Section Labels */
.mentorias-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.mentorias-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mentorias-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

/* Processo Section */
.mentorias-processo-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.mentorias-processo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mentorias-processo-header .mentorias-section-description {
    margin: 0 auto;
}

.mentorias-processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mentorias-processo-card {
    position: relative;
    background: var(--bg-light);
    padding: 2.5rem 2rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.mentorias-processo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mentorias-processo-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mentorias-processo-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-orange);
}

.mentorias-processo-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.mentorias-processo-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Modalidades Section */
.mentorias-modalidades-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mentorias-modalidades-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mentorias-modalidades-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mentorias-modalidades-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mentorias-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.mentorias-feature:hover {
    transform: translateX(5px);
}

.mentorias-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.mentorias-feature-icon-img {
    width: 56px;
    height: 56px;
    margin: 0 auto;
}

.mentorias-feature-icon-img img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mentorias-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.mentorias-modalidades-visual {
    display: flex;
    justify-content: center;
}

.mentorias-modalidades-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mentorias-tipo-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    max-width: 300px;
}

.mentorias-tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mentorias-tipo-card.presencial {
    transform: translateX(20px);
}

.mentorias-tipo-card.online {
    transform: translateX(-20px);
}

.mentorias-tipo-card:hover.presencial,
.mentorias-tipo-card:hover.online {
    transform: translateY(-5px);
}

.tipo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
}

.mentorias-tipo-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mentorias-tipo-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.mentorias-tipo-card-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

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

/* Materiais Section */
.mentorias-materiais-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.mentorias-materiais-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mentorias-materiais-header .mentorias-section-description {
    margin: 0 auto;
}

.mentorias-materiais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mentorias-material-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.mentorias-material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.material-card-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: white;
}

.fll-card .material-card-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.ftc-card .material-card-header {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
}

.material-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.material-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.material-card-content {
    padding: 2rem;
}

.mentorias-material-btn {
    display: inline-block;
    margin-top: 1.25rem;
    text-align: center;
}

.material-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.material-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.material-list li:first-child {
    padding-top: 0;
}

.material-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.material-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.material-item-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.material-item-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Depoimentos Section */
.mentorias-depoimentos-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mentorias-depoimentos-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mentorias-depoimentos-header .mentorias-section-description {
    margin: 0 auto;
}

.mentorias-depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mentorias-depoimento-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mentorias-depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.depoimento-img-wrapper {
    padding: 1.25rem 1.25rem 0;
    display: block;
    width: 100%;
}

/* Quadrado: área da print com aspect-ratio 1:1 */
.depoimento-img-wrapper.depoimento-img-clickable {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    background: transparent;
    margin: 0;
    font: inherit;
}

.depoimento-img-clickable img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.depoimento-expand-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.depoimento-img-clickable:hover .depoimento-expand-hint {
    opacity: 1;
}

.depoimento-img-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.depoimento-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.depoimento-equipe {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.depoimento-modalidade {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border-radius: 20px;
    text-transform: uppercase;
}

/* Lightbox depoimento (print completa) */
.depoimento-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.depoimento-lightbox.depoimento-lightbox-open {
    opacity: 1;
    visibility: visible;
}

.depoimento-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.depoimento-lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento-lightbox-img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.depoimento-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.depoimento-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.mentorias-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.mentorias-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mentorias-cta-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.mentorias-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.mentorias-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 2rem;
}

.mentorias-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.mentorias-cta-button svg {
    transition: transform 0.3s ease;
}

.mentorias-cta-button:hover svg {
    transform: translateX(5px);
}

.mentorias-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.mentorias-cta-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.mentorias-cta-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.decoration-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: pulse 3s ease-in-out infinite;
}

.decoration-circle.circle-2 {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.decoration-circle.circle-3 {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    background: rgba(255, 107, 53, 0.1);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

/* Mentorias Page Responsive */
@media (max-width: 1024px) {
    .mentorias-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mentorias-hero-visual {
        order: -1;
    }

    .mentorias-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .mentorias-icon-wrapper svg {
        width: 80px;
        height: 80px;
    }

    .mentorias-hero-title {
        font-size: 2.5rem;
    }

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

    .mentorias-modalidades-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mentorias-modalidades-visual {
        order: -1;
    }

    .mentorias-modalidades-cards {
        flex-direction: row;
        justify-content: center;
    }

    .mentorias-tipo-card.presencial,
    .mentorias-tipo-card.online {
        transform: none;
    }

    .mentorias-cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mentorias-cta-description {
        margin: 0 auto 2rem;
    }

    .mentorias-cta-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .mentorias-hero {
        padding: 3rem 0;
    }

    .mentorias-hero-title {
        font-size: 2rem;
    }

    .mentorias-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .mentorias-section-title {
        font-size: 2rem;
    }

    .mentorias-processo-section,
    .mentorias-modalidades-section,
    .mentorias-materiais-section,
    .mentorias-depoimentos-section,
    .mentorias-cta-section {
        padding: 3rem 0;
    }

    .mentorias-depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .mentorias-processo-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mentorias-modalidades-features {
        grid-template-columns: 1fr;
    }

    .mentorias-modalidades-cards {
        flex-direction: column;
        align-items: center;
    }

    .mentorias-materiais-grid {
        grid-template-columns: 1fr;
    }

    .mentorias-cta-title {
        font-size: 1.75rem;
    }
}

/* ====================== */
/* Indicações Page        */
/* ====================== */

/* Indicações Hero */
.indicacoes-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.indicacoes-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.indicacoes-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.indicacoes-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 30px;
}

.indicacoes-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.indicacoes-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

.indicacoes-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicacoes-icon-wrapper {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    animation: float 6s ease-in-out infinite;
}

/* Indicações Section Labels */
.indicacoes-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.indicacoes-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.indicacoes-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

/* Indicações Area Sections */
.indicacoes-area-section {
    padding: 5rem 0;
}

.indicacoes-ae-section {
    background: var(--bg-light);
}

.indicacoes-mci-section {
    background: var(--secondary-color);
}

.indicacoes-area-header {
    text-align: center;
    margin-bottom: 3rem;
}

.indicacoes-area-header .indicacoes-section-description {
    margin: 0 auto;
}

/* Indicações intro video (embed) */
.indicacoes-intro-video-block {
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.indicacoes-intro-video-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-align: center;
}
.indicacoes-intro-video-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Indicações Note */
.indicacoes-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.75rem;
    background: var(--secondary-color);
    border-radius: 14px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.indicacoes-note-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.indicacoes-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.indicacoes-em-breve {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem 0;
}

/* Indicações Docs Grid (PDF) */
.indicacoes-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.indicacoes-doc-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 1.75rem;
    background: var(--bg-light);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-left: 4px solid var(--accent-orange);
}

.indicacoes-doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.35);
}

/* Preview em proporção A4 (210×297) */
.indicacoes-doc-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 210 / 297;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border: 1px solid rgba(255, 107, 53, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.indicacoes-doc-card:hover .indicacoes-doc-preview {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.indicacoes-doc-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.indicacoes-doc-card:hover .indicacoes-doc-cover {
    transform: scale(1.02);
}

.indicacoes-doc-hover-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.75);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.indicacoes-doc-card:hover .indicacoes-doc-hover-label {
    opacity: 1;
}

.indicacoes-doc-preview .indicacoes-doc-icon {
    color: var(--accent-orange);
    padding: 2rem;
    opacity: 0.85;
}

.indicacoes-doc-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.indicacoes-doc-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.45;
    flex-grow: 1;
}

.indicacoes-doc-card:hover .indicacoes-doc-title {
    color: var(--accent-orange);
}

.indicacoes-doc-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent-orange);
    border-radius: 20px;
    text-transform: uppercase;
    align-self: flex-start;
}

/* Indicações Videos Grid */
.indicacoes-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.indicacoes-video-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.indicacoes-mci-section .indicacoes-video-card {
    background: var(--bg-light);
}

.indicacoes-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.indicacoes-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a2e;
}

.indicacoes-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.indicacoes-video-card:hover .indicacoes-video-thumb img {
    transform: scale(1.05);
}

.indicacoes-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    z-index: 1;
}

.indicacoes-video-play svg {
    margin-left: 3px;
}

.indicacoes-video-card:hover .indicacoes-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-orange);
}

.indicacoes-video-info {
    padding: 1.25rem 1.5rem;
}

.indicacoes-video-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.indicacoes-video-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border-radius: 20px;
    text-transform: uppercase;
}

/* Indicações Responsive */
@media (max-width: 768px) {
    .indicacoes-hero {
        padding: 3rem 0;
    }

    .indicacoes-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .indicacoes-hero-title {
        font-size: 2.5rem;
    }

    .indicacoes-hero-description {
        margin: 0 auto;
    }

    .indicacoes-hero-visual {
        order: -1;
    }

    .indicacoes-icon-wrapper {
        width: 140px;
        height: 140px;
    }

    .indicacoes-icon-wrapper svg {
        width: 80px;
        height: 80px;
    }

    .indicacoes-section-title {
        font-size: 2rem;
    }

    .indicacoes-area-section {
        padding: 3rem 0;
    }

    .indicacoes-videos-grid,
    .indicacoes-docs-grid {
        grid-template-columns: 1fr;
    }

    .indicacoes-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Contato Section */
.contato-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contato-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contato-duvidas-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: var(--text-light);
}

.contato-duvidas-text a {
    color: var(--accent-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contato-duvidas-text a:hover {
    color: #e55a2b;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-orange);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.cta-button-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* First Logo Section */
.first-logo-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.first-logo-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   NOVAS SEÇÕES - LANDING PAGE E PÁGINAS
   ============================================ */

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 1rem 0;
}

.cta-link:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* Destaques Section */
.destaques-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.destaque-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: block;
    border-left: 4px solid transparent;
}

.destaque-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-orange);
}

.destaque-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destaque-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.destaque-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Números Section */
.numeros-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: var(--secondary-color);
}

.numeros-section .section-title {
    color: var(--secondary-color);
}

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

.numero-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.numero {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.numero-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Valores Home Section */
.valores-home-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.valores-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.valor-home-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.valor-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.valor-home-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.valor-home-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Temporada DECODE Section */
.temporada-decode-section {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
}

.temporada-decode-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.temporada-decode-card {
    position: relative;
    perspective: 1000px;
}

.temporada-card-inner {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: rotate(-2deg);
    position: relative;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        );
}

.temporada-card-inner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    transform: rotate(2deg);
}

.temporada-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.temporada-decode-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.temporada-decode-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.temporada-season-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.temporada-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.temporada-title sup {
    font-size: 1.2rem;
    vertical-align: super;
}

.temporada-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.temporada-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.temporada-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.temporada-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.temporada-feature span:last-child {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.temporada-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    align-self: flex-start;
}

.temporada-cta:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .temporada-decode-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .temporada-card-inner {
        transform: rotate(0deg);
        padding: 3rem 2rem;
    }
    
    .temporada-card-inner::before {
        display: none;
    }
    
    .temporada-decode {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .temporada-decode-section {
        padding: 4rem 0;
    }
    
    .temporada-title {
        font-size: 2rem;
    }
    
    .temporada-description {
        font-size: 1rem;
    }
    
    .temporada-decode {
        font-size: 3rem;
    }
    
    .temporada-first {
        font-size: 2rem;
    }
    
    .temporada-cta {
        width: 100%;
        text-align: center;
    }
}

.temporada-decode-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.temporada-visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.temporada-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.temporada-visual-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: block;
}

.temporada-visual-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.temporada-visual-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive - Temporada DECODE */
@media (max-width: 968px) {
    .temporada-decode-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .temporada-title {
        font-size: 2.8rem;
    }
    
    .temporada-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .temporada-decode-section {
        padding: 4rem 0;
    }
    
    .temporada-title {
        font-size: 2.2rem;
    }
    
    .temporada-description {
        font-size: 1rem;
    }
    
    .temporada-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .temporada-feature {
        justify-content: center;
    }
    
    .temporada-visual-card {
        padding: 2rem;
    }
    
    .visual-icon {
        font-size: 3rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: var(--secondary-color);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Vision Section */
.vision-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-content {
    padding: 1rem 0;
}

.vision-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.vision-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.vision-values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.vision-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.vision-values-list .check-icon {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vision-accessibility-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.accessibility-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.accessibility-icon-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.7;
}

.vision-images {
    position: relative;
}

.vision-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 450px;
}

.vision-image-left {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.vision-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image-right-top {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.vision-image-right-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image-right-bottom {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.vision-image-right-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-content {
        order: 2;
    }

    .vision-images {
        order: 1;
    }

    .vision-images-grid {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 3rem 0;
    }

    .vision-title {
        font-size: 2rem;
    }

    .vision-description {
        font-size: 0.95rem;
    }

    .vision-images-grid {
        min-height: 300px;
        gap: 0.75rem;
    }

    .vision-values-list li {
        font-size: 0.95rem;
    }

    .vision-accessibility-note {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
}

/* Inclusão & Acessibilidade Section */
.inclusao-section {
    background: var(--secondary-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.inclusao-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.inclusao-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.inclusao-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.inclusao-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.inclusao-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.inclusao-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.inclusao-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.inclusao-badge:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
}

.inclusao-badge svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.inclusao-video {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

/* Container vertical 9:16 — proporção natural, sem esticar */
.inclusao-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.inclusao-video-container video,
.inclusao-video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.inclusao-video-container video {
    object-fit: contain;
    object-position: center;
}

@media (max-width: 992px) {
    .inclusao-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
    }

    .inclusao-title {
        font-size: 2.2rem;
    }

    .inclusao-content {
        text-align: center;
    }

    .inclusao-badges {
        justify-content: center;
    }

    .inclusao-video {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .inclusao-section {
        padding: 4rem 0;
    }

    .inclusao-title {
        font-size: 1.8rem;
    }

    .inclusao-description {
        font-size: 0.95rem;
    }

    .inclusao-video {
        width: 250px;
    }

    .inclusao-video-container video {
        object-fit: cover;
        object-position: center;
    }

    .inclusao-video-container iframe {
        inset: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 116%;
        height: 100%;
    }
}

/* Acessibilidade Section (Legacy) */
.acessibilidade-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.acessibilidade-content {
    max-width: 900px;
    margin: 0 auto;
}

.acessibilidade-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
    color: var(--secondary-color) !important;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.highlight-text strong {
    color: var(--secondary-color);
}

/* Equipe Atual Section */
.equipe-atual-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.equipe-image-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.equipe-foto {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.equipe-caption {
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Modalidades Preview Section */
.modalidades-preview-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.modalidades-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modalidade-preview-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.modalidade-preview-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modalidade-preview-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-saiba-mais {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.link-saiba-mais:hover {
    color: #e55a2b;
}

/* Premiações Intro Section */
.premiacoes-intro-section {
    background: var(--secondary-color);
    padding: 3rem 0;
}

/* Temporada Atual Badge */
.temporada-atual {
    position: relative;
    border: 2px solid var(--accent-orange);
}

.badge-atual {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.destaque-internacional {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: var(--secondary-color) !important;
    border-left-color: var(--secondary-color) !important;
}

.destaque-internacional strong {
    color: var(--secondary-color);
}

.destaque-internacional .premio-desc {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Resumo Prêmios Section */
.resumo-premios-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

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

.resumo-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.resumo-numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.resumo-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Porque Section (Faça Parte) */
.porque-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.porque-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Impacto Section */
.impacto-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: var(--secondary-color);
}

.impacto-section .section-title,
.impacto-section .section-description {
    color: var(--secondary-color);
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.impacto-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.impacto-numero {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.impacto-desc {
    font-size: 1.1rem;
    line-height: 1.6;
}

.fonte-texto {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.fonte-texto a {
    color: var(--secondary-color);
}

/* Faça Parte: impacto cards em seção clara */
.faca-parte-impacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.mentorias-modalidades-section .faca-parte-impacto-card {
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-color);
}
.mentorias-modalidades-section .faca-parte-impacto-card .impacto-numero {
    color: var(--accent-orange);
}
.mentorias-modalidades-section .faca-parte-impacto-card .impacto-desc {
    color: var(--text-light);
}
.mentorias-modalidades-section .fonte-texto a {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .faca-parte-impacto-grid {
        grid-template-columns: 1fr;
    }
}

/* Interesse Section */
.interesse-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.interesse-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Como Criar Section */
.como-criar-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

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

.passo-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.passo-numero {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.passo-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

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

.passo-card ul li {
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.passo-card ul li:last-child {
    border-bottom: none;
}

/* Habilidades Section */
.habilidades-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.habilidade-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.habilidade-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.habilidade-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.habilidade-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================================================
   PARTNERS PAGE - MODERN DESIGN
   ===================================================== */

/* Partners Hero Section */
.partners-hero-section {
    margin-top: 80px;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.partners-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(0, 102, 204, 0.03) 100%);
    transform: rotate(-12deg);
    pointer-events: none;
}

.partners-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-hero-content {
    position: relative;
    z-index: 2;
}

.partners-hero-title {
    margin-bottom: 1.5rem;
}

.partners-hero-title .title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.partners-hero-title .title-line.accent {
    color: var(--accent-orange);
    font-style: italic;
    font-weight: 400;
}

.partners-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.partners-hero-visual {
    position: relative;
}

.partners-logos-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.showcase-logo {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    aspect-ratio: 1;
}

a.showcase-logo {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.showcase-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.showcase-logo img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.showcase-logo:hover img {
    filter: grayscale(0%);
}

/* Partners Grid Section */
.partners-grid-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.partners-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 30px;
}

.partners-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.partners-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Partner Modern Card */
.partner-modern-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    scroll-margin-top: 100px;
}

.partner-modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.partner-modern-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.partner-modern-card.featured .partner-name,
.partner-modern-card.featured .partner-description {
    color: var(--secondary-color);
}

.partner-modern-card.featured .partner-description strong {
    color: var(--accent-orange);
}

.partner-card-inner {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.partner-modern-card.featured .partner-card-inner {
    padding: 2.5rem;
}

.partner-logo-container {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

a.partner-logo-container {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.partner-modern-card.featured .partner-logo-container {
    width: 180px;
    height: 180px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.partner-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.partner-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 102, 204, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.partner-tag.featured-tag {
    background: var(--accent-orange);
    color: var(--secondary-color);
}

.partner-tag.special-tag {
    background: linear-gradient(135deg, var(--accent-orange), #ff8f6b);
    color: var(--secondary-color);
}

.partner-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.partner-description strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.partner-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.partner-modern-card.featured .partner-highlight {
    background: rgba(255, 107, 53, 0.15);
}

.partner-highlight svg {
    flex-shrink: 0;
    color: var(--accent-orange);
    margin-top: 2px;
}

.partner-highlight span {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

.partner-modern-card.featured .partner-highlight span {
    color: rgba(255, 255, 255, 0.9);
}

/* Partners Video Section */
.partners-video-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

/* Become Partner Section */
.become-partner-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--secondary-color) 100%);
}

.become-partner-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.become-partner-content {
    text-align: center;
    margin-bottom: 3rem;
}

.become-partner-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.become-partner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.become-partner-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8f6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrapper svg {
    color: var(--secondary-color);
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.become-partner-cta {
    text-align: center;
}

.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for Partners Page */
@media (max-width: 1024px) {
    .partners-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partners-hero-title .title-line {
        font-size: 2.8rem;
    }

    .partners-logos-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .showcase-logo {
        padding: 1rem;
    }

    .partners-modern-grid {
        grid-template-columns: 1fr;
    }

    .partner-modern-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .partners-hero-section {
        padding: 4rem 0 3rem;
    }

    .partners-hero-title .title-line {
        font-size: 2.2rem;
    }

    .partners-logos-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .partner-header {
        justify-content: center;
    }

    .partner-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .become-partner-title {
        font-size: 2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .temporadas-grid {
        gap: 2rem;
    }

    .temporada-card {
        padding: 1.5rem;
    }

    .valores-list {
        grid-template-columns: 1fr;
    }

    .materiais-grid {
        grid-template-columns: 1fr;
    }

    .modalidade-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    /* Botões do hero (vídeo) menores em celular */
    .hero-video-bg .hero-buttons .cta-button,
    .hero-video-bg .hero-buttons .cta-button-outline {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
    }

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

    .numero {
        font-size: 2.5rem;
    }

    .impacto-numero {
        font-size: 3rem;
    }


    .passos-grid {
        grid-template-columns: 1fr;
    }

    .habilidades-grid {
        grid-template-columns: 1fr;
    }
}

