/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f6f6f6;
    color: #000822;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background-color: #f6f6f6;
    padding: 32px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 80px;
}

.logo {
    width: 68px;
    height: 78px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navigation {
    display: flex;
    flex: 1;
    gap: 32px;
    align-items: center;
    justify-content: flex-end;
    font-size: 20px;
    line-height: 28px;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: #5c5c5c;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #04a6e1;
    transform: translateY(-2px);
}

.nav-link.active {
    font-weight: 700;
    color: #04a6e1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #04a6e1;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.contact-button {
    padding: 8px 32px;
    background: linear-gradient(135deg, #04a6e1 0%, #0289c7 100%);
    border: 3px solid #04a6e1;
    border-radius: 500px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: linear-gradient(135deg, #0289c7 0%, #04a6e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 166, 225, 0.3);
}

/* Hero Section */
.hero-section {
    background-color: #000822;
    border-radius: 40px;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1), 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    min-height: 650px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 56px;
    position: relative;
    z-index: 3;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    min-width: 0;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #f6f6f6;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1px;
    color: #f6f6f6;
}

.hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #f6f6f6;
    max-width: 417px;
}

.hero-button {
    padding: 10px 30px;
    background: linear-gradient(135deg, #04a6e1 0%, #0289c7 100%);
    border: 3px solid #04a6e1;
    border-radius: 500px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: white;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: linear-gradient(135deg, #0289c7 0%, #04a6e1 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 166, 225, 0.3);
}

.hero-image-container {
    position: relative;
    width: 548px;
    height: 548px;
    flex-shrink: 0;
}

.hero-logo-background {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 274px;
    height: 548px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-logo-bg {
    position: absolute;
    left: -226.18px;
    top: -87.41px;
    width: 778.604px;
    height: 619.344px;
    object-fit: contain;
    transform: rotate(0.865deg);
}

.hero-image {
    position: relative;
    width: 548px;
    height: 548px;
    border-radius: 40px;
    object-fit: cover;
    z-index: 2;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background-color: #f6f6f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-background-vectors {
    position: absolute;
    left: 0;
    top: 327px;
    z-index: 1;
    width: 100%;
    height: 340px;
    pointer-events: none;
    background-image: url('assets/images/background-vectors.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Logo Container Section - Carrossel Infinito */
.logo-container-section {
    padding: 60px 0;
    position: relative;
    z-index: 7;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.logo-container-section::before,
.logo-container-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-container-section::before {
    left: 0;
    background: linear-gradient(to right, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
}

.logo-container-section::after {
    right: 0;
    background: linear-gradient(to left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
}

.logos-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-container-section:hover .logos-grid {
    animation-play-state: paused;
}

.partner-logo {
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Challenges Section */
.challenges-section {
    padding: 64px 0;
    position: relative;
    z-index: 6;
    width: 100%;
    overflow: hidden;
}

.challenges-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 32px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1px;
    color: #000822;
}

.section-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.bento-grid::before {
    content: '';
    position: absolute;
    width: 439px;
    height: 439px;
    left: 145px;
    top: 151px;
    background: radial-gradient(circle, rgba(4, 66, 255, 0.6) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: -1;
}

.bento-grid::after {
    content: '';
    position: absolute;
    width: 439px;
    height: 439px;
    left: 912px;
    top: -35px;
    background: radial-gradient(circle, rgba(4, 16, 255, 0.5) 0%, transparent 70%);
    filter: blur(250px);
    pointer-events: none;
    z-index: -1;
}

.bento-row {
    display: flex;
    gap: 32px;
    height: 320px;
    width: 100%;
    max-width: 100%;
}

.bento-row:first-child {
    height: 350px;
}

.bento-card {
    backdrop-filter: blur(24px);
    background: rgba(233, 233, 233, 0.1);
    border: 1px solid #f6f6f6;
    border-radius: 40px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.bento-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 166, 225, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.15s ease, top 0.15s ease;
    z-index: 0;
    left: var(--mouse-x);
    top: var(--mouse-y);
    transform: translate(-50%, -50%);
}

.bento-card.hover-active::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

.bento-row:first-child .bento-card {
    flex: 1;
    min-height: 320px;
}

.bento-row:last-child .bento-card {
    min-height: 350px;
}

.card-1 {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
}

.card-2 {
    flex: 1;
    background-image: url('assets/images/challenge-image-1.png');
    background-size: cover;
    background-position: center;
}

.card-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
}

.card-2 .card-content {
    position: relative;
    z-index: 1;
}

.card-3 {
    flex: 1;
    align-items: flex-end;
    justify-content: space-between;
}

.card-4, .card-6 {
    width: 320px;
    padding: 0;
}

.card-5 {
    flex: 1;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.card-icon {
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
    white-space: nowrap;
}

.card-label-white {
    color: white;
}

.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #04a6e1;
}

.card-title-white {
    color: white;
    line-height: 28px;
    letter-spacing: -0.5px;
}

/* Idea Section */
.idea-section {
    padding: 104px 0;
    position: relative;
    z-index: 5;
}

.idea-content {
    display: flex;
    gap: 56px;
    align-items: center;
}

.idea-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.idea-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1px;
    color: #04a6e1;
}

.idea-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
}

.idea-image-wrapper {
    flex: 1;
    width: 680px;
    height: 680px;
    position: relative;
    border-radius: 40px;
    border: 1px solid #b7b7b7;
    overflow: hidden;
}

.idea-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    mix-blend-mode: exclusion;
}

.idea-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 262px;
    height: 262px;
    background: radial-gradient(circle, rgba(4, 166, 225, 1) 0%, rgba(93, 212, 255, 1) 100%);
    filter: blur(60px);
    mix-blend-mode: plus-lighter;
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

/* Objectives Section */
.objectives-section {
    padding: 112px 0;
    position: relative;
    z-index: 4;
}

.objectives-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 866px;
    margin: 0 auto 72px;
}

.objectives-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #898989;
}

.objectives-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 80px;
    letter-spacing: -1px;
    color: #00030e;
}

.objectives-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
}

.objectives-grid {
    display: flex;
    gap: 96px;
    margin-bottom: 72px;
}

.objective-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.objective-icon {
    width: 200px;
    height: 200px;
    background-color: #04a6e1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.objective-icon:hover {
    transform: translateY(-8px) rotate(5deg);
}

.objective-icon-outlined {
    background-color: #f6f6f6;
    border: 1px solid #04a6e1;
}

.objective-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #00030e;
}

.objective-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
}

.objectives-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-primary {
    padding: 12px 32px;
    background: linear-gradient(135deg, #04a6e1 0%, #0289c7 100%);
    border: 3px solid #04a6e1;
    border-radius: 500px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0289c7 0%, #04a6e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 166, 225, 0.3);
}

.btn-secondary {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid #5c5c5c;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #00030e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #04a6e1;
    color: #04a6e1;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 112px 0;
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
}

.cta-card {
    background-color: #000822;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 887px;
    height: 887px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 72px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #f6f6f6;
}

.cta-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #f6f6f6;
}

.cta-button {
    padding: 12px 32px;
    background: linear-gradient(135deg, #04a6e1 0%, #0289c7 100%);
    border: 3px solid #04a6e1;
    border-radius: 500px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #f6f6f6;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0289c7 0%, #04a6e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 166, 225, 0.3);
}

.cta-image {
    width: 555px;
    height: 353px;
    border-radius: 40px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.why-choose-section {
    padding: 56px 0;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background-color: #000822;
    border-radius: 40px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    left: 427px;
    top: 393px;
    width: 575px;
    height: 575px;
    background: radial-gradient(circle, rgba(4, 66, 255, 0.6) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.why-choose-header {
    border: 1px solid rgba(183, 183, 183, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    z-index: 3;
}

.why-header-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #b7b7b7;
}

.why-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1px;
    color: #04a6e1;
    flex: 1;
}

.features-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.features-secondary-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.features-top-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.feature-card {
    background: rgba(250, 250, 250, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(4, 166, 225, 0.2);
}

.feature-card-1 {
    flex: 0 0 417px;
    width: 417px;
    max-width: 100%;
    min-height: 674px;
}

.feature-card-2,
.feature-card-3 {
    flex: 1;
    min-height: 321px;
}

.feature-card-4 {
    width: 100%;
    min-height: 321px;
    background-color: #04a6e1;
}

.feature-icon {
    margin-bottom: 12px;
}

.feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #f6f6f6;
}

.feature-title .highlight {
    color: #04a6e1;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #f6f6f6;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 40px;
}

.card-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

/* Footer Section */
.footer-section {
    padding: 112px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    margin-bottom: 72px;
}

.footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 80px;
    letter-spacing: -1px;
    color: #000822;
    max-width: 800px;
}

.footer-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #5c5c5c;
}

.footer-cta-button {
    padding: 12px 32px;
    background: transparent;
    border: 3px solid #04a6e1;
    border-radius: 500px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #f6f6f6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background-color: #04a6e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 166, 225, 0.3);
}

.footer-logo {
    text-align: center;
    margin-bottom: 72px;
}

.footer-logo img {
    height: 168px;
    filter: drop-shadow(0 0 40px rgba(4, 166, 225, 0.3));
}

.social-media-grid {
    display: flex;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.social-link {
    flex: 1;
    height: 90px;
    border: 1px solid #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #5c5c5c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(4, 166, 225, 0.1);
    color: #04a6e1;
}

.footer-bottom {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fafafa;
    padding: 32px;
    display: flex;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-logo-sm {
    height: 100px;
    margin-bottom: 32px;
}

.footer-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1px;
    color: #000822;
    max-width: 686px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    justify-content: center;
    min-width: 200px;
}

.footer-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #5c5c5c;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: #04a6e1;
}

.footer-nav-link.active {
    font-weight: 700;
    color: #04a6e1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-nav-link.active::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.7197 7.71967C17.0126 7.42678 17.4874 7.42678 17.7803 7.71967L21.5303 11.4697C21.8232 11.7626 21.8232 12.2374 21.5303 12.5303L17.7803 16.2803C17.4874 16.5732 17.0126 16.5732 16.7197 16.2803C16.4268 15.9874 16.4268 15.5126 16.7197 15.2197L19.1893 12.75H3C2.58579 12.75 2.25 12.4142 2.25 12C2.25 11.5858 2.58579 11.25 3 11.25H19.1893L16.7197 8.78033C16.4268 8.48744 16.4268 8.01256 16.7197 7.71967Z' fill='%23000822'/%3E%3C/svg%3E");
    background-size: contain;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablet e Desktop pequeno - 1024px ou menos */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    /* Header */
    .header-content {
        gap: 20px;
    }
    
    .navigation {
        gap: 20px;
        font-size: 18px;
    }
    
    /* Hero Section */
    .hero-section {
        margin-bottom: 24px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }
    
    .hero-logo-background {
        width: 100%;
        height: 100%;
    }
    
    .hero-background-vectors {
        top: 250px;
        height: 250px;
    }
    
    /* Bento Grid */
    .bento-row {
        flex-direction: column;
        height: auto;
        gap: 24px;
    }
    
    .bento-row:first-child,
    .bento-row:last-child {
        height: auto;
    }
    
    .bento-card {
        min-height: 280px;
    }
    
    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100%;
    }
    
    /* Objectives */
    .objectives-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .objective-card {
        width: 100%;
    }
    
    /* Why Choose Section */
    .features-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .feature-card-1 {
        width: 100% !important;
        flex: 1;
        min-height: 400px;
    }
    
    .features-secondary-column {
        width: 100%;
    }
    
    .features-top-row {
        flex-direction: row;
        gap: 24px;
    }
    
    .feature-card-2,
    .feature-card-3 {
        flex: 1;
        min-height: 280px;
    }
    
    .feature-card-4 {
        min-height: 320px;
    }
    
    /* Idea Section */
    .idea-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .idea-text {
        max-width: 100%;
    }
    
    .idea-image-wrapper {
        width: 100%;
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* CTA Section */
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-title {
        font-size: 56px;
        line-height: 64px;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Tablet - 768px ou menos */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .navigation {
        display: none;
    }
    
    .contact-button {
        padding: 6px 20px;
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 32px 24px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    /* Logo Carousel */
    .logo-container-section {
        padding: 40px 0;
    }
    
    .partner-logo {
        height: 32px;
    }
    
    /* Challenges Section */
    .section-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .section-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .bento-card {
        padding: 24px;
        min-height: 240px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    /* Why Choose Section */
    .why-choose-card {
        padding: 32px 24px;
    }
    
    .why-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .why-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .why-title-row img {
        width: 32px;
        height: 32px;
    }
    
    .features-top-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card-1,
    .feature-card-2,
    .feature-card-3,
    .feature-card-4 {
        min-height: 280px;
    }
    
    .feature-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    /* Idea Section */
    .idea-section {
        padding: 64px 0;
    }
    
    .idea-label {
        font-size: 18px;
    }
    
    .idea-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .idea-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .idea-image-wrapper {
        height: 400px;
    }
    
    /* Objectives Section */
    .objectives-section {
        padding: 64px 0;
    }
    
    .objective-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .objective-text {
        font-size: 18px;
        line-height: 26px;
    }
    
    .objectives-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 64px 0;
    }
    
    .cta-card {
        padding: 40px 24px;
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .cta-text {
        font-size: 18px;
        line-height: 26px;
    }
    
    .cta-image {
        width: 100%;
        height: 300px;
    }
    
    /* Footer */
    .footer-section {
        padding: 64px 0;
    }
    
    .footer-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .footer-subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }
}

/* Mobile - 640px ou menos */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header {
        padding: 20px 0;
    }
    
    .header-content {
        min-height: 60px;
    }
    
    .logo {
        width: 50px;
        height: 58px;
    }
    
    /* Hero Section */
    .hero-section {
        border-radius: 24px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 24px 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-button {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button img {
        width: 16px;
        height: 16px;
    }
    
    /* Logo Carousel */
    .logo-container-section {
        padding: 32px 0;
    }
    
    .logos-grid {
        gap: 40px;
    }
    
    .partner-logo {
        height: 28px;
    }
    
    /* Challenges Section */
    .challenges-section {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .bento-grid {
        gap: 16px;
    }
    
    .bento-card {
        padding: 20px;
        min-height: 200px;
        border-radius: 24px;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 48px 0;
    }
    
    .why-choose-card {
        padding: 24px 20px;
        border-radius: 24px;
    }
    
    .why-choose-header {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    .why-label {
        font-size: 16px;
    }
    
    .why-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .why-title-row img {
        width: 28px;
        height: 28px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .feature-card-1,
    .feature-card-2,
    .feature-card-3,
    .feature-card-4 {
        min-height: 240px;
    }
    
    .feature-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .feature-link {
        font-size: 16px;
        gap: 16px;
    }
    
    .feature-link img {
        width: 20px;
        height: 20px;
    }
    
    .card-arrow {
        width: 24px !important;
        height: 24px !important;
        bottom: 20px;
        right: 20px;
    }
    
    /* Idea Section */
    .idea-section {
        padding: 48px 0;
    }
    
    .idea-content {
        gap: 32px;
    }
    
    .idea-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .idea-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .idea-image-wrapper {
        height: 320px;
        border-radius: 24px;
    }
    
    /* Objectives Section */
    .objectives-section {
        padding: 48px 0;
    }
    
    .objective-card {
        padding: 24px;
        border-radius: 24px;
    }
    
    .objective-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .objective-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 16px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }
    
    .cta-card {
        padding: 32px 20px;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .cta-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .cta-image {
        height: 250px;
        border-radius: 24px;
    }
    
    /* Footer */
    .footer-section {
        padding: 48px 0;
    }
    
    .footer-header {
        gap: 24px;
    }
    
    .footer-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .footer-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    
    .footer-cta-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 48px;
    }
    
    .footer-logo img {
        height: 120px;
    }
    
    .social-link {
        padding: 16px;
        font-size: 16px;
    }
    
    .footer-nav {
        font-size: 16px;
    }
}

/* Landscape Mobile - altura máxima 500px */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content {
        padding: 24px;
    }
    
    .hero-image-container {
        height: 250px;
        width: auto;
        aspect-ratio: 1;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}
