/* style.css - Maple Bear Campina Grande - CSS COMPLETO PARA TODAS AS PÁGINAS */
:root {
    --primary-color: #e31837;
    --primary-dark: #b8142c;
    --primary-light: #f04d65;
    --secondary-color: #1a1a1a;
    --accent-color: #f9a826;
    --text-color: #333;
    --light-text: #666;
    --background-light: #f8f9fa;
    --white: #fff;
    --border-color: #eaeaea;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #e89c1a 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
}

/* CORREÇÃO: Evitar scroll quando menu mobile está aberto */
body.menu-open {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TIPOGRAFIA E UTILITÁRIOS ===== */
.section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: left;
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 60px;
    max-width: 600px;
    font-weight: 300;
}

.section-subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.text-left {
    text-align: left;
}

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

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ===== BOTÕES ===== */
.btn-primary, .btn-secondary, .btn-card, .btn-outline {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-card {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    margin-top: auto;
    box-shadow: var(--shadow);
    min-width: auto;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.2rem;
    width: 100%;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HEADER ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-cta .btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.mobile-menu.active {
    color: var(--primary-dark);
}

/* ===== BANNER PRINCIPAL - CORRIGIDO PARA MOBILE ===== */
.video-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--white);
}

/* Para o banner de Londres */
.londres-hero {
    position: relative;
    width: 100%;
    background: var(--white);
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.londres-hero .video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
}

.londres-hero .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--white);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 3;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SEÇÃO SOBRE ===== */
.sobre {
    padding: 100px 0;
    background: var(--gradient-light);
}

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

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 25px;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.intro-text {
    font-size: 1.3rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.sobre-destaques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.destaque-item {
    text-align: left;
    padding: 30px 25px;
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.destaque-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 24, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.destaque-item:hover::before {
    left: 100%;
}

.destaque-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.destaque-icon {
    margin-bottom: 20px;
}

.destaque-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.destaque-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary-color);
}

.destaque-item p {
    color: var(--light-text);
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sobre-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.02);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== SEÇÃO GALERIA ===== */
.galeria {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.galeria-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== SEÇÃO PROGRAMAS ===== */
.programas {
    padding: 100px 0;
    background: var(--gradient-light);
}

.programas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.programa-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.programa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 24, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.programa-card:hover::before {
    left: 100%;
}

.programa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.programa-icon {
    margin-bottom: 25px;
    text-align: left;
}

.programa-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.programa-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.programa-card p {
    margin-bottom: 25px;
    color: var(--light-text);
    line-height: 1.7;
    text-align: left;
    font-size: 1.05rem;
    flex-grow: 1;
}

.programa-card ul {
    text-align: left;
    list-style-type: none;
    margin-bottom: 30px;
}

.programa-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    text-align: left;
    color: var(--light-text);
}

.programa-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== IMERSÃO LONDRES ===== */
.londres {
    background: var(--white);
}

.londres-hero {
    position: relative;
    width: 100%;
    background: var(--white);
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}

.londres-hero .video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
}

.londres-hero .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--white);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-overlay h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.londres-content {
    padding: 100px 0;
    background: var(--gradient-light);
}

.experiencia-section {
    max-width: 1100px;
    margin: 0 auto;
}

.experiencia-section h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.destaque-texto {
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 70px;
    max-width: 900px;
    font-weight: 400;
}

.beneficios-section {
    margin-bottom: 70px;
}

.beneficios-header {
    text-align: left;
    margin-bottom: 50px;
}

.beneficios-header h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.beneficios-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    text-align: left;
    font-weight: 300;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.beneficio-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.beneficio-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.beneficio-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beneficio-card h4 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
}

.beneficio-card ul {
    list-style: none;
    text-align: left;
}

.beneficio-card ul li {
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    text-align: left;
    color: var(--light-text);
    font-size: 1.05rem;
}

.beneficio-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.beneficio-card ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-section {
    margin-top: 70px;
}

.cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    z-index: 1;
}

.cta-content {
    z-index: 1;
    flex: 1;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
    text-align: left;
    line-height: 1.6;
}

.cta-content .btn-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-content .btn-primary:hover {
    background: #e89c1a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== SEÇÃO CONTATO ===== */
.contato {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contato-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contato-info h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contato-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    text-align: left;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 8px;
    font-weight: 600;
    text-align: left;
    color: var(--secondary-color);
}

.info-content p {
    text-align: left;
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

.imersao-destaque {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.imersao-destaque h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    text-align: left;
}

.imersao-destaque p {
    text-align: left;
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

.contato-form {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contato-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 10px;
}

.contato-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    text-align: left;
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* ===== SEÇÃO PRÉ-MATRÍCULA ===== */
.pre-matricula {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pre-matricula-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pre-matricula-header.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.pre-matricula-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pre-matricula-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.pre-matricula-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.pre-matricula-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.pre-matricula-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-card.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(227, 24, 55, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-text p {
    color: var(--light-text);
    line-height: 1.6;
}

.pre-matricula-cta {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: sticky;
    top: 100px;
}

.countdown-container {
    margin-bottom: 30px;
}

.countdown-container h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* CORREÇÃO: Contador horizontal como na imagem */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: var(--shadow);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-item p {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-action {
    margin-top: 20px;
}

.cta-action .btn-primary.large {
    padding: 18px 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    width: 100%;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.depoimento-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.depoimento-text {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul {
    list-style: none;
    text-align: left;
}

.footer-col ul li {
    margin-bottom: 12px;
    text-align: left;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-logo {
    margin-bottom: 25px;
    height: 45px;
    width: auto;
}

.footer-col p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    line-height: 1.6;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    margin-right: 12px;
    margin-top: 5px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.imersao-footer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.imersao-footer p {
    text-align: left;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.imersao-footer p strong {
    color: var(--white);
}

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

/* ===== BOTÃO PLAY PARA VÍDEO ===== */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.05);
}

/* ===== FALLBACK PARA VÍDEO ===== */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.fallback-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.fallback-content p {
    font-size: 1.1rem;
}

/* ===== RESPONSIVIDADE - CORREÇÃO DO VÍDEO MOBILE ===== */

/* Desktop */
@media (min-width: 1025px) {
    .video-banner,
    .londres-hero {
        height: 100vh;
        min-height: 700px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-banner,
    .londres-hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {

    /* Esconde o menu por padrão */
    nav ul {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* QUANDO O ID main-nav RECEBER .active */
    #main-nav.active ul {
        display: flex !important;
    }

    .mobile-menu {
        display: block;
    }

    .header-cta { display: none; }
}
    
    /* Vídeo Mobile - Tamanho Reduzido */
    .video-banner,
    .londres-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .video-container video {
        object-fit: cover;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        margin: 5px 0;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .sobre-destaques {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }
    
    .experiencia-section h2 {
        font-size: 1.8rem;
    }
    
    .destaque-texto {
        font-size: 1rem;
    }
    
    .beneficio-card,
    .contato-form,
    .pre-matricula-cta {
        padding: 25px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-overlay h2 {
        font-size: 1.8rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
    
    .pre-matricula-header h2 {
        font-size: 1.8rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .pre-matricula-content {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .container {
        width: 92%;
    }
    
    .sobre,
    .programas,
    .londres-content,
    .contato,
    .pre-matricula,
    .galeria,
    .depoimentos {
        padding: 60px 0;
    }
    
    /* Vídeo Mobile - Ainda Menor */
    .video-banner,
    .londres-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .experiencia-section h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .pre-matricula-header h2 {
        font-size: 1.6rem;
    }
    
    .cta-box {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-form,
    .pre-matricula-cta {
        padding: 20px 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 1.3rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .video-banner,
    .londres-hero {
        height: 30vh;
        min-height: 200px;
    }
    
    .banner-content h1 {
        font-size: 1.3rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }
    
    .sobre-destaques {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destaque-item {
        padding: 20px 15px;
    }
    
    .destaque-item h3 {
        font-size: 1.1rem;
    }
    
    .destaque-item p {
        font-size: 0.85rem;
    }
    
    .experiencia-section h2 {
        font-size: 1.4rem;
    }
    
    .destaque-texto {
        font-size: 0.9rem;
    }
    
    .beneficio-card {
        padding: 20px 15px;
    }
    
    .beneficio-card h4 {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 15px 12px;
    }
    
    .info-text h3 {
        font-size: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 8px;
    }
    
    .countdown-item span {
        font-size: 1.1rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .container {
        width: 95%;
    }
    
    .video-banner,
    .londres-hero {
        height: 25vh;
        min-height: 180px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .banner-content h1 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 6px;
    }
    
    .countdown-item span {
        font-size: 1rem;
    }
    
    .countdown-item p {
        font-size: 0.7rem;
    }
}

/* ===== CORREÇÃO PARA TABLETS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-banner,
    .londres-hero {
        height: 50vh;
    }
    
    .sobre-content {
        gap: 40px;
    }
    
    .sobre-destaques {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .pre-matricula-content {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* ===== ESTADOS DE FOCO ===== */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================
   MENU MOBILE — ANIMAÇÃO SUAVE
   ============================ */

@media (max-width: 768px) {

    /* NAV escondido por padrão */
    nav ul {
        position: absolute;
        top: 80px; /* abre abaixo do header */
        left: 0;

        width: 100%;
        background: #fff;

        flex-direction: column;
        padding: 20px 0;

        box-shadow: 0 10px 25px rgba(0,0,0,0.1);

        /* Animação */
        max-height: 0;
        overflow: hidden;

        opacity: 0;
        transform: translateY(-10px);
        transition: 
            max-height .35s ease,
            opacity .35s ease,
            transform .35s ease;
    }

    /* quando ativo */
    #main-nav.active ul {
        max-height: 500px; /* altura suficiente */
        opacity: 1;
        transform: translateY(0);
    }

    /* Itens do menu */
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    nav ul li a {
        display: flex;
        justify-content: center;   /* CENTRALIZA ícone + texto */
        align-items: center;       /* CENTRALIZA verticalmente */
        gap: 10px;                 /* espaço entre ícone e texto */

        font-size: 1.2rem;
        padding: 12px;
        width: 100%;
    }

    nav ul li a i {
        font-size: 1.3rem;
        color: var(--primary-color);
    }
}
/* ===============================
   CORREÇÃO DO CARD CTA BUGADO
   =============================== */

.cta-box {
    background: var(--gradient-primary);
    width: 100%;
    padding: 35px 30px !important;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Ícone alinhado corretamente */
.cta-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Textos corrigidos */
.cta-content h3,
.cta-content p {
    text-align: left !important;
    width: 100%;
    line-height: 1.4;
}

/* Botão alinhado */
.cta-content .btn-primary {
    background: #f9a826;
    color: #222;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
}

/* ===============================
   CORREÇÃO PARA MOBILE
   =============================== */
@media (max-width: 768px) {

    .cta-box {
        padding: 25px 22px !important;
        border-radius: 18px;
        align-items: center; /* centraliza conteúdo no mobile */
        text-align: center;
    }

    .cta-content h3,
    .cta-content p {
        text-align: center !important;
    }

    .cta-icon {
        margin: 0 auto 10px auto;
    }
}
/* ======================================
   CENTRALIZAÇÃO DOS ÍCONES NAS INFO-CARDS
   ====================================== */

.info-card {
    display: flex;
    flex-direction: column;  /* Ícone em cima, texto embaixo */
    align-items: center;     /* Centraliza tudo */
    text-align: center;
}

/* Ícone centralizado em bolinha */
.info-icon {
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 70px;
    height: 70px;
    border-radius: 50%;

    background: rgba(227, 24, 55, 0.1);
    color: var(--primary-color);

    font-size: 2rem;
}

/* Corrige alinhamento do bloco de texto */
.info-text {
    text-align: center;
}
