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

body {
    font-family: 'ABeeZee', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    height: 138px;
    box-shadow: 0px 6px 10px -2px rgba(85, 105, 135, 0.04), 
                0px 2px 4px -2px rgba(85, 105, 135, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    height: 65px;
    width: 215px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    display: none;
    width: 100%;
    height: 100%;
}

.logo img[style*="display: none"] ~ .logo-placeholder {
    display: flex;
}

.logo-placeholder svg {
    width: 100%;
    height: 100%;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #003294;
    text-decoration: none;
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item[href="#"] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-item[href="#"]::after {
    content: 'Em breve';
    font-size: 11px;
    line-height: 1;
    color: #5f6f8f;
    border: 1px solid #d8dfeb;
    border-radius: 999px;
    padding: 4px 8px;
    white-space: nowrap;
    background: #f7f9fd;
    flex-shrink: 0;
}

html[lang^="en"] .dropdown-item[href="#"]::after {
    content: 'Coming soon';
}

html[lang^="es"] .dropdown-item[href="#"]::after {
    content: 'Proximamente';
}

.nav-link {
    text-decoration: none;
    color: #003294;
    font-family: 'ABeeZee', sans-serif;
    font-size: 18px;
    line-height: 20px;
    padding: 10px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.language-btn {
    min-width: 72px;
    height: 40px;
    background: white;
    border: 1px solid rgba(0, 50, 148, 0.18);
    border-radius: 999px;
    cursor: pointer;
    padding: 0 12px;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #003294;
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    line-height: 1;
    position: relative;
}

.language-btn:hover {
    transform: scale(1.1);
    border-color: rgba(0, 50, 148, 0.35);
    box-shadow: 0 8px 20px rgba(0, 50, 148, 0.12);
}

.language-switcher {
    position: relative;
    z-index: 150;
}

.language-current {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.language-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.language-switcher.open .language-chevron {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: white;
    border: 1px solid rgba(0, 50, 148, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    padding: 8px;
    display: none;
    z-index: 200;
}

.language-switcher.open .language-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.language-option {
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    color: #003294;
    cursor: pointer;
    font-family: 'ABeeZee', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.language-option:hover,
.language-option.active {
    background: #eef4ff;
    color: #001f66;
}

.btn-login {
    background: #003294;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 56px;
    cursor: pointer;
    font-family: 'ABeeZee', sans-serif;
    font-size: 18px;
    line-height: 22px;
    height: 40px;
    box-shadow: 0px 1px 2px 0px rgba(105, 81, 255, 0.05);
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login:hover {
    background: #002266;
    transform: translateY(-2px);
}

.btn-login:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: #E6EDF8;
}

/* Menu Toggle (Hamburguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #003294;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero-wrapper {
    background: white;
    padding: 20px 0 40px;
}

.hero-wrapper .container {
    max-width: 95%;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('hero-bg.jpg') center/cover no-repeat;
    background-color: #5a9fd4;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 80px 40px;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    line-height: 1.4;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

.section-title-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    text-align: center;
    color: #3b3b3b;
    letter-spacing: 0.2px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line-1,
.title-line-2 {
    display: block;
    line-height: 48px;
}

.highlight {
    color: #003294;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-hidden {
    display: none;
}

.products-grid.columns-2 .product-card-centered {
    grid-column: 1 / -1;
    width: min(100%, calc((100% - 30px) / 2));
    justify-self: center;
}

.products-grid.columns-3 .product-card-centered {
    grid-column: 2;
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.product-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-banner-contain {
    object-fit: contain;
    padding: 28px;
}

.product-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    margin: 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.product-icon {
    font-size: 80px;
}

.product-card h3 {
    font-size: 20px;
    margin: 20px 10px 10px;
    color: #333;
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 0 10px;
}

.btn-discover {
    background: #003294;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-discover:hover {
    background: #002266;
}

.btn-coming-soon {
    background: #ff7a00;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: default;
    font-weight: 700;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-coming-soon:hover {
    background: #e06900;
}

.btn-solutions {
    background: #00B2FF;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions:hover {
    background: #0099DD;
}
.btn-solutions-pink {
    background: #FF1493;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions-pink:hover {
    background: #E0127D;
}

.btn-solutions-pink.is-hidden {
    display: none;
}
.btn-solutions-pink {
    background: #FF1493;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions-pink:hover {
    background: #E0127D;
}

/* Reasons Section */
.reasons {
    padding: 80px 0;
    background: #D6E3EC;
}

.reasons .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0.2px;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 60px;
}

.reasons-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reasons-flow-bottom {
    margin-bottom: 50px;
}

.reason-flow-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.reason-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 3;
}

.reason-ball {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.reason-box {
    position: relative;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    padding-left: 40px;
}

.reason-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.reason-box p {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 10px 18px 20px 18px;
}

.reason-arrow {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.6;
}

.reason-arrow-container {
    display: none;
}

.reason-arrow-mobile {
    display: none;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reason-item {
    text-align: center;
}

.reason-number {
    width: 80px;
    height: 80px;
    background: #003294;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.reason-item p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Discover Section */
.discover {
    padding: 80px 0;
    background: white;
}

.discover-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.discover-text {
    flex: 1;
    position: relative;
}

.discover-line {
    width: 110px;
    height: 5px;
    background: #003294;
    margin-bottom: 30px;
}

.discover-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 59px;
    letter-spacing: 0.2px;
    color: #3b3b3b;
}

.discover-image {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.discover-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.discover-image iframe {
    border-radius: 15px;
}

.discover-placeholder {
    background: linear-gradient(135deg, #89CFF0 0%, #6BB6D6 100%);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* Methods Section */
.methods {
    padding: 80px 0;
    background: #003294;
    color: white;
}

.methods .section-title {
    color: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.method-card {
    position: relative;
    display: grid;
    grid-template-rows: 90px auto;
    align-items: start;
    justify-items: center;
    --method-text-offset: 182px;
}

.method-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00d4ff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #00d4ff;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
    z-index: 3;
    text-transform: uppercase;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.method-title img {
    max-width: 320px;
    height: 70px;
    object-fit: contain;
}

.method-box {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-bg {
    position: absolute;
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    top: 0;
    left: 0;
}

.method-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px 20px 10px var(--method-text-offset);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.method-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.method-card p {
    font-size: 16px;
    line-height: 1.35;
    color: white;
    margin: 0;
    width: 100%;
    text-align: left;
    max-width: 300px;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.method-desc {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* Estilos específicos para cada card */
.method-card-gamificacao {
    grid-template-rows: 85px auto;
}

.method-card-gamificacao .method-content {
    padding-left: var(--method-text-offset);
}

.method-card-gamificacao p {
    font-size: 16px;
}

.method-card-ia {
    grid-template-rows: 90px auto;
}

.method-card-ia .method-content {
    padding-left: var(--method-text-offset);
}

.method-card-ia p {
    font-size: 16px;
    margin-bottom: 0;
}

.method-card-neurociencia {
    grid-template-rows: 90px auto;
}

.method-card-neurociencia .method-content {
    padding-left: var(--method-text-offset);
}

.method-card-neurociencia p {
    font-size: 16px;
}

.method-card-relatorios {
    grid-template-rows: 80px auto;
}

.method-card-relatorios .method-content {
    padding-left: var(--method-text-offset);
}

.method-card-relatorios p {
    font-size: 16px;
    margin-top: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F4F4F4;
    color: #333;
}

.contact-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.contact-card::before {
    display: none;
}

.contact-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    max-width: 450px;
}

.contact-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: white;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.35);
    margin: 0;
}

.btn-contact {
    background: #FFC506;
    color: #431773;
    border: none;
    padding: 10px 32px;
    border-radius: 5000px;
    cursor: pointer;
    font-family: 'Poppins', 'ABeeZee', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: 0.036px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    text-decoration: none;
}

.btn-contact span {
    text-decoration: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 24px 0px rgba(0,0,0,0.2);
}

.arrow-contact {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
}

.contact-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mockup-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
}

.contact-placeholder {
    background: rgba(255,255,255,0.1);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.footer-contact .icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-contact .icon {
    font-size: 16px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #003294;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #003294;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: transparent;
    color: #003294;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border: 1px solid #003294;
}

.social-icons a:hover {
    background: #003294;
    color: white;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .btn-login {
        font-size: 16px;
        padding: 10px 18px;
    }

    .contact-content {
        left: 40px;
        max-width: 350px;
    }
    
    .contact-text h2 {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (max-width: 992px) {
    .nav {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px;
    }
    
    .btn-login {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-overlay h1 {
        font-size: 42px;
        line-height: 46px;
    }

    .stat-number {
        font-size: 42px;
        line-height: 46px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        height: 70px;
        padding: 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 0 15px;
        align-items: center;
    }
    
    .logo {
        height: 45px;
        width: 160px;
        order: 2;
    }

    .menu-toggle {
        display: flex;
        order: 1;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        z-index: 999;
        gap: 0;
        order: 4;
        pointer-events: none;
    }

    .nav.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px 0;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        background: #f8f8f8;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 40px;
        font-size: 14px;
        border-bottom: 1px solid #e8e8e8;
        display: block;
        width: 100%;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .header-right {
        order: 3;
        gap: 10px;
    }

    .language-btn {
        min-width: 64px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .language-menu {
        min-width: 136px;
    }

    .btn-login {
        display: none;
    }

    /* Hero */
    .hero-wrapper {
        padding: 15px 0 30px;
    }

    .hero {
        min-height: 350px;
        padding: 50px 20px;
        border-radius: 15px;
    }

    .hero-overlay h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .stats {
        gap: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        width: calc(50% - 10px);
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-number {
        font-size: 36px;
        line-height: 40px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Products */
    .products {
        padding: 50px 0;
    }

    .section-title-main {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .title-line-1,
    .title-line-2 {
        line-height: 34px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .btn-solutions,
    .btn-solutions-pink {
        width: 100%;
        max-width: 320px;
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Reasons */
    .reasons {
        padding: 50px 0;
    }

    .reasons .section-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .reasons-flow {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .reason-flow-item {
        justify-content: center;
    }

    .reason-arrow {
        transform: rotate(90deg);
        width: 25px;
        height: 25px;
        margin: 10px 0;
    }

    .reason-arrow-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 10px 0;
    }

    .reason-arrow-mobile {
        display: block;
        transform: rotate(90deg);
        width: 25px;
        height: 25px;
    }

    .reason-box {
        width: 100%;
        max-width: 500px;
        height: 260px;
        padding-left: 100px;
    }

    .reason-box p {
        font-size: 18px;
        padding: 25px 25px 25px 15px;
        line-height: 1.4;
    }

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

    .reason-num {
        font-size: 44px;
    }

    /* Discover */
    .discover {
        padding: 50px 0;
    }

    .discover-content {
        flex-direction: column;
        gap: 30px;
    }

    .discover-line {
        width: 80px;
        height: 4px;
        margin-bottom: 20px;
    }

    .discover-text h2 {
        font-size: 42px;
        line-height: 46px;
    }

    .discover-image {
        width: 100%;
    }

    /* Methods */
    .methods {
        padding: 50px 0;
    }

    .methods .section-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-title img {
        max-width: 280px;
        height: 60px;
    }

    .method-box {
        height: 140px;
    }

    .method-bg {
        height: 140px;
    }

    .method-card p {
        font-size: 14px;
        max-width: 280px;
    }

    .method-card-gamificacao .method-content {
        padding-left: 140px;
    }

    .method-card-gamificacao p {
        font-size: 14px;
    }

    .method-card-ia .method-content {
        padding-left: 140px;
    }

    .method-card-ia p {
        font-size: 14px;
    }

    .method-card-neurociencia .method-content {
        padding-left: 140px;
    }

    .method-card-neurociencia p {
        font-size: 14px;
    }

    .method-card-relatorios .method-content {
        padding-left: 140px;
    }

    .method-card-relatorios p {
        font-size: 14px;
    }

    /* Contact */
    .contact {
        padding: 50px 0;
    }

    .contact-card {
        position: relative;
        padding: 0;
        display: block;
    }

    .contact-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        background: rgba(0, 50, 148, 0.85);
        border-radius: 15px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .contact-text h2 {
        font-size: 24px;
        line-height: 30px;
        text-shadow: none;
        text-align: center;
    }
    
    .btn-contact {
        font-size: 16px;
        padding: 10px 24px;
        width: 100%;
        justify-content: center;
    }

    .contact-image {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-wrapper .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero {
        min-height: 300px;
        padding: 40px 15px;
        border-radius: 12px;
    }

    .hero-overlay h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 28px;
        line-height: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-title-main {
        font-size: 24px;
        line-height: 30px;
    }

    .title-line-1,
    .title-line-2 {
        line-height: 30px;
    }

    .product-image {
        height: 180px;
    }

    .product-card h3 {
        font-size: 18px;
        margin: 15px 10px 8px;
    }

    .product-desc {
        font-size: 13px;
    }

    .btn-discover {
        padding: 10px 25px;
        font-size: 13px;
    }

    .reasons .section-title {
        font-size: 24px;
        line-height: 30px;
    }

    .reason-box {
        max-width: 400px;
        height: 200px;
        padding-left: 85px;
    }

    .reason-box p {
        font-size: 15px;
        padding: 20px 20px 20px 10px;
        line-height: 1.4;
    }

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

    .reason-num {
        font-size: 36px;
    }

    .discover-text h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .methods .section-title {
        font-size: 24px;
        line-height: 30px;
    }

    .method-title img {
        max-width: 240px;
        height: 50px;
    }

    .method-box {
        height: 120px;
    }

    .method-bg {
        height: 120px;
    }

    .method-card p {
        font-size: 13px;
        max-width: 240px;
    }

    .method-card-gamificacao .method-content {
        padding-left: 120px;
    }

    .method-card-gamificacao p {
        font-size: 13px;
    }

    .method-card-ia .method-content {
        padding-left: 120px;
    }

    .method-card-ia p {
        font-size: 13px;
    }

    .method-card-neurociencia .method-content {
        padding-left: 120px;
    }

    .method-card-neurociencia p {
        font-size: 13px;
    }

    .method-card-relatorios .method-content {
        padding-left: 120px;
    }

    .method-card-relatorios p {
        font-size: 13px;
    }

    .method-card .method-content {
        padding-left: clamp(132px, 33vw, 152px);
    }

    .method-card p {
        max-width: 210px;
    }

    .contact-content {
        padding: 25px 15px;
    }

    .contact-text h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .btn-contact {
        font-size: 14px;
        padding: 10px 20px;
    }

    .arrow-contact {
        width: 28px;
        height: 28px;
    }

    .btn-solutions,
    .btn-solutions-pink {
        font-size: 13px;
        padding: 10px 25px;
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 280px;
        padding: 30px 10px;
    }

    .hero-overlay h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .stat-number {
        font-size: 24px;
        line-height: 28px;
    }

    .section-title-main {
        font-size: 20px;
        line-height: 26px;
    }

    .title-line-1,
    .title-line-2 {
        line-height: 26px;
    }

    .discover-text h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .reason-box {
        max-width: 350px;
        height: 180px;
        padding-left: 75px;
    }

    .reason-box p {
        font-size: 14px;
        padding: 18px 18px 18px 8px;
        line-height: 1.4;
    }

    .reason-circle {
        width: 70px;
        height: 70px;
    }

    .reason-num {
        font-size: 32px;
    }
}
