@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000e8b;
    --accent-color: #C8102E;
    --text-color: #000;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: #ffffff;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 80px;
    transition: padding-top 0.3s ease, scroll-padding-top 0.3s ease;
}

/* ================= UTILITÁRIOS ================= */
.smooth-fullscreen {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.5s ease;
}

.smooth-scroll-section {
    scroll-margin-top: 80px;
    transition: scroll-margin-top 0.3s ease;
}

/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover:after {
    width: 100%;
}

.btn-cliente {
    background: var(--primary-color);
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cliente:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ================= HERO SECTION SUAVIZADA ================= */
.hero {
    padding-top: 0;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    
    opacity: 0;
    animation: heroEntrance 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Texto da Hero */
.hero-text {
    width: 50%;
    opacity: 0;
    animation: fadeInLeftSoft 0.9s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInLeftSoft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.coreano {
    font-size: 85px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: 2px;
    
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpElement 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

.romanizado {
    font-size: 24px;
    letter-spacing: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpElement 0.6s ease-out forwards;
    animation-delay: 0.7s;
}

.frase {
    font-size: 28px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-left: 25px;
    
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpElement 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

.frase:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
    animation: lineGlow 3s infinite alternate;
}

@keyframes lineGlow {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(0, 14, 139, 0.3);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 14, 139, 0.5);
    }
}

.btn-historia {
    display: inline-block;
    padding: 16px 35px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-color);
    
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpElement 0.6s ease-out forwards;
    animation-delay: 0.9s;
    
    position: relative;
    overflow: hidden;
}

.btn-historia:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-historia:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-historia:hover:after {
    width: 300px;
    height: 300px;
}

@keyframes fadeInUpElement {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Foto da Hero */
.hero-foto {
    width: 45%;
    display: flex;
    justify-content: center;
    
    opacity: 0;
    transform: translateX(15px) scale(0.98);
    animation: fadeInRightSoft 0.9s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInRightSoft {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.foto-box {
    width: 380px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.foto-box:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.foto-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
    transform: scale(1.03);
}

.foto-box:hover img {
    transform: scale(1.08);
}

.foto-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards, bounceSoft 2s infinite;
    animation-delay: 1.1s, 1.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
    position: relative;
}

.scroll-arrow:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-right: 1px solid rgba(0, 14, 139, 0.3);
    border-bottom: 1px solid rgba(0, 14, 139, 0.3);
    transform: rotate(45deg);
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes bounceSoft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-8px) translateX(-50%);
    }
    60% {
        transform: translateY(-4px) translateX(-50%);
    }
}

/* ================= FULLSCREEN SECTIONS ================= */
.fullscreen-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    transition: padding 0.3s ease;
}

.fullscreen-section:not(.hero) {
    min-height: calc(100vh - 80px);
    padding: 80px 0;
}

.section-number {
    position: absolute;
    right: 60px;
    bottom: 40px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 14, 139, 0.05);
    z-index: 1;
}

/* ================= SOBRE ================= */
.sobre {
    background: var(--light-bg);
}

.sobre-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.sobre-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-img-box {
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.sobre-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-img-box:hover img {
    transform: scale(1.05);
}

.sobre-texto {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.sobre-descricao {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.sobre-valores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.valor-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.valor-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.valor-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ================= EQUIPE ================= */
.equipe {
    background: linear-gradient(135deg, #000e8b 0%, #b40000 100%);
    color: white;
}

.equipe-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.equipe-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipe .section-title {
    color: white;
}

.equipe .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.equipe .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.membro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.membro:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.membro-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.membro-graduacao {
    color: #e69e19;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.membro-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* ================= HORÁRIOS ================= */
.horarios {
    background: var(--light-bg);
}

.horarios-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.horarios-header {
    text-align: center;
    margin-bottom: 60px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dia-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.dia-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.dia-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.dia-titulo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dia-subtitulo {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.turmas-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.turma-item {
    background: rgba(0, 14, 139, 0.03);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.turma-item:hover {
    background: rgba(0, 14, 139, 0.08);
    transform: translateX(5px);
}

.turma-info {
    margin-bottom: 15px;
}

.turma-nome {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.turma-idade {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 13px;
    display: block;
}

.turma-horario {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.horario-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.horario-valor {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 16px;
    background: rgba(0, 14, 139, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
}

.dia-actions {
    text-align: center;
}

.btn-turma {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    width: 100%;
    max-width: 250px;
    border: 2px solid var(--primary-color);
}

.btn-turma:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dia-card.destaque {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.dia-card.destaque:before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: 800;
    letter-spacing: 1px;
}

/* ================= NOTÍCIAS ================= */
.noticias {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.noticias-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.noticias-header {
    text-align: center;
    margin-bottom: 60px;
}

.noticias .section-title {
    color: white;
}

.noticias .section-title:after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
}

.noticias .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.noticia-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.noticia-imagem {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.1);
}

.noticia-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noticia-conteudo {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia-data {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.noticia-data i {
    font-size: 12px;
}

.noticia-titulo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: white;
}

.noticia-resumo {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.noticia-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    gap: 12px;
}

.noticia-link i {
    transition: var(--transition);
    font-size: 12px;
}

.noticia-link:hover i {
    transform: translateX(3px);
}

.noticias-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-noticias {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
}

.btn-noticias:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

.noticia-card.destaque {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.08);
}

.noticia-card.destaque .noticia-imagem {
    height: 100%;
}

.noticia-card.destaque .noticia-conteudo {
    padding: 40px;
    justify-content: center;
}

.noticia-card.destaque .noticia-titulo {
    font-size: 28px;
}

.noticia-card.destaque .noticia-resumo {
    font-size: 16px;
}

/* ================= F.A.Q ================= */
.faq {
    background: var(--light-bg);
}

.faq-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 14, 139, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px 0 20px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.faq-cta .btn-turma {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

/* ================= FOOTER MINIMALISTA ================= */
.footer {
    background: #000000;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 15px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4,
.footer-social h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-list a:hover {
    color: var(--accent-color);
}

.footer-list i {
    color: var(--accent-color);
    font-size: 12px;
    width: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ================= MODAL ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    transform: scale(1.2);
    color: var(--accent-color);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
    font-size: 16px;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(0, 14, 139, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.modal-option:hover {
    background: rgba(0, 14, 139, 0.1);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.modal-option h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-option p {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVIDADE COMPLETA ================= */

/* 1200px */
@media (max-width: 1200px) {
    .hero-content,
    .sobre-content,
    .equipe-content,
    .horarios-content,
    .faq-content,
    .noticias-content {
        padding: 0 40px;
    }

    .coreano {
        font-size: 75px;
    }

    .foto-box {
        width: 340px;
        height: 450px;
    }

    .sobre-img-box {
        height: 450px;
    }

    .equipe-grid,
    .horarios-grid {
        gap: 25px;
    }
}

/* 992px */
@media (max-width: 992px) {
    .fullscreen-section:not(.hero) {
        min-height: calc(100vh - 80px);
        padding: 80px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-content,
    .sobre-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
        gap: 60px;
    }

    .hero-text,
    .sobre-texto {
        width: 100%;
    }

    .frase {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    .frase:before {
        display: none;
    }

    .hero-foto,
    .sobre-imagem {
        width: 100%;
    }

    .coreano {
        font-size: 70px;
    }

    .romanizado {
        font-size: 22px;
        letter-spacing: 6px;
    }

    .frase {
        font-size: 24px;
    }

    .sobre-img-box {
        max-width: 400px;
        height: 400px;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .horarios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
    }

    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sobre-valores {
        grid-template-columns: 1fr;
    }

    .noticia-card.destaque {
        grid-template-columns: 1fr;
    }

    .noticia-card.destaque .noticia-imagem {
        height: 300px;
    }

    .noticia-card.destaque .noticia-titulo {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-social {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
}

/* 768px */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .fullscreen-section:not(.hero) {
        min-height: calc(100vh - 70px);
        padding: 60px 0;
    }

    .hero {
        margin-top: 0;
        min-height: 100vh;
        padding: 90px 0 50px;
    }

    html {
        scroll-padding-top: 70px;
    }

    .navbar {
        padding: 0 25px;
        height: 70px;
    }

    .navbar.scrolled {
        height: 65px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content,
    .sobre-content,
    .equipe-content,
    .horarios-content,
    .faq-content,
    .noticias-content {
        padding: 0 25px;
    }

    .coreano {
        font-size: 60px;
    }

    .romanizado {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .frase {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .foto-box {
        width: 300px;
        height: 400px;
    }

    .btn-historia {
        padding: 14px 30px;
        font-size: 13px;
    }

    .sobre-img-box {
        height: 350px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-number {
        right: 25px;
        bottom: 25px;
        font-size: 80px;
    }

    .dia-card {
        padding: 30px 25px;
    }

    .turma-item {
        padding: 18px;
    }

    .turma-nome {
        font-size: 17px;
    }

    .btn-turma {
        padding: 13px 30px;
        font-size: 13px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }

    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .noticia-conteudo {
        padding: 20px;
    }

    .noticia-card.destaque .noticia-conteudo {
        padding: 25px;
    }

    .noticia-titulo {
        font-size: 18px;
    }

    .noticia-card.destaque .noticia-titulo {
        font-size: 22px;
    }

    .footer-content {
        padding: 40px 25px 30px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .modal-content {
        margin: 15% auto;
        width: 95%;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-option {
        padding: 15px;
    }

    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .fullscreen-section:not(.hero) {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content,
    .sobre-content,
    .equipe-content,
    .horarios-content,
    .faq-content,
    .noticias-content {
        padding: 0 20px;
        gap: 40px;
    }

    .coreano {
        font-size: 50px;
    }

    .romanizado {
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .frase {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .btn-historia,
    .btn-cliente {
        padding: 12px 25px;
        font-size: 12px;
    }

    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .nav-links {
        top: 70px;
    }

    .foto-box {
        width: 260px;
        height: 350px;
    }

    .logo img {
        height: 70px;
    }

    .sobre-img-box {
        height: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-number {
        font-size: 60px;
    }

    .membro,
    .dia-card {
        padding: 25px 20px;
    }

    .horarios-header {
        margin-bottom: 40px;
    }

    .dia-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .dia-titulo {
        font-size: 20px;
    }

    .turmas-lista {
        gap: 20px;
        margin-bottom: 30px;
    }

    .turma-item {
        padding: 15px;
    }

    .turma-horario {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding-top: 12px;
    }

    .horario-valor {
        align-self: flex-end;
    }

    .faq-content {
        padding: 0 20px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-cta p {
        font-size: 16px;
    }

    .noticias-content {
        padding: 0 20px;
    }

    .noticia-conteudo {
        padding: 18px;
    }

    .noticia-card.destaque .noticia-conteudo {
        padding: 20px;
    }

    .noticia-titulo {
        font-size: 17px;
    }

    .noticia-card.destaque .noticia-titulo {
        font-size: 20px;
    }

    .btn-noticias {
        padding: 14px 25px;
        font-size: 13px;
    }

    .footer-content {
        padding: 30px 20px 25px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .copyright {
        font-size: 12px;
    }

    .modal-content {
        margin: 20% auto;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-option {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .option-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .modal-option p {
        text-align: center;
    }
}

/* Alturas muito pequenas */
@media (max-height: 700px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        min-height: calc(100vh - 180px);
    }
    
    .foto-box {
        height: 350px;
    }
}