@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1e3a8a; --secondary: #3b82f6; --accent: #f59e0b;
  --dark: #0f172a; --light: #f8fafc; --white: #ffffff;
  --shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header { background: var(--white); backdrop-filter: blur(10px); box-shadow: var(--shadow); position: fixed; top: 0; width: 100%; z-index: 1000; }
.topbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; margin: 0 20px; }
.logo-img { height: 55px; width: auto; }
.nav { display: flex; gap: 2rem; }
.nav a { color: var(--dark); text-decoration: none; font-weight: 500; position: relative; transition: color 0.3s; }
.nav a:hover { color: var(--secondary); }
.nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--secondary); transition: width 0.3s; }
.nav a:hover::after { width: 100%; }

/* HERO - CORRIGIDO */
.hero { 
  min-height: 100vh; 
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); 
  display: flex; 
  align-items: center; 
  color: var(--white); 
  position: relative; 
  margin-top: 50px;
}

.hero-content { 
  display: grid;
  grid-template-columns: 1fr 420px;  /* ← TEXTO + VIDEO FIXO */
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  margin-top: 50px;
}

.hero h2 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 700; 
  line-height: 1.1; 
  margin-bottom: 5rem; 
 
}

.hero h2 strong { 
  background: linear-gradient(135deg, var(--accent), #fbbf24); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.hero p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 1.5rem; }
.btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.btn-primary { background: var(--accent); color: var(--dark); box-shadow: 0 10px 30px rgba(245,158,11,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(245,158,11,0.5); }

/* 🎥 VÍDEO HERO - PERFEITO */
.video-carousel-wrapper {
  width: 100px;
  height: 100px;         /* ← ALTURA FIXA */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.carousel-container,
.carousel-slide {
  width: 100px;
  height: 100px;
}

.carousel-slide video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* 🎛️ CONTROLES ÁUDIO */
.video-controls {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.video-carousel-wrapper:hover .video-controls {
  opacity: 1;
}

.audio-toggle {
  background: rgba(0,0,0,0.85);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.audio-toggle:hover {
  background: rgba(0,0,0,1);
  transform: scale(1.02);
}

/* SECTIONS */
.section { padding: 6rem 0; background: var(--light); }
.section-white { background: var(--white); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.card { background: var(--white); border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); transition: all 0.4s; border: 1px solid rgba(0,0,0,0.05); }
.card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.card-image { width: 100%; height: 220px; border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-image img { transform: scale(1.05); }
.card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; color: var(--dark); }
.card p { color: #64748b; }

/* DEPOIMENTOS */
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial { text-align: center; padding: 2rem; }
.testimonial img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.testimonial-text { font-style: italic; color: #64748b; font-size: 1.1rem; }

/* FORM */
.form-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 2px solid #e2e8f0; border-radius: 12px; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); color: var(--white); text-align: center; padding: 4rem 0; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
.social-links { display: flex; gap: 1rem; }
.social-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; transition: all 0.3s; box-shadow: var(--shadow); }
.social-btn:hover { transform: translateY(-4px) scale(1.05); }
.social-btn.instagram { background: #e4405f; }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp { background: #25d366; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; color: #94a3b8; }

/* MENU MOBILE */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transition: left 0.4s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active { left: 0; }

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-link:hover, .mobile-link.active {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white !important;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .topbar { justify-content: space-between; }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .video-carousel-wrapper {
    height: 260px;
    order: -1;
  }
  
  .split { flex-direction: column; gap: 2rem; }
  .text, .image { width: 100%; text-align: center; }
  .cards { flex-direction: column; }
}

@media (max-width: 768px) {
  .video-carousel-wrapper { height: 220px; }
  .hero-content { padding: 1rem 20px; }
  .audio-toggle { padding: 8px 14px; font-size: 13px; }
}
/* MISSÃO E QUEM SOMOS */
.mission-section, .quem-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #f1f5f9 100%);
}

.center-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-text, .subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* HISTÓRIA */
.story-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-badge {
  display: inline-flex;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(30,58,138,0.3);
}

.timeline {
  margin: 3rem 0;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-left: 3px solid #e2e8f0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.timeline-item .year {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-item.highlight::before {
  background: linear-gradient(135deg, var(--accent), #dc2626);
  box-shadow: 0 6px 20px rgba(245,158,11,0.6);
}

.mission-final {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  border-left: 5px solid var(--accent);
}

.mission-final blockquote {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
  align-items: center;
}

.author {
  text-align: right;
  color: #64748b;
  font-weight: 500;
}

/* FOTO COM OVERLAY */
.image-container {
  width: 50%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
  transition: all 0.4s ease;
}

.image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem;
  color: white;
}

.profile-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* CTA FINAL */
.cta-final {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-glow-large {
  display: inline-flex;
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  background: white;
  color: var(--primary);
  box-shadow: 0 20px 40px rgba(255,255,255,0.3);
  backdrop-filter: blur(20px);
}

.btn-glow-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(255,255,255,0.4);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .split { flex-direction: column; gap: 3rem; }
  .image-right { order: -1; }
  .image-container { height: 350px; max-width: 400px; margin: 0 auto; }
  
  .profile-stats { flex-direction: column; gap: 1rem; }
}

@media (max-width: 768px) {
  .image-container { height: 280px; }
  .timeline-item { padding-left: 2rem; }
}
/* MISSÃO COM IMAGEM LADO A LADO */
.mission-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.split-mission {
  display: grid;
  grid-template-columns: 1fr 380px;  /* ← TEXTO + IMAGEM FIXA */
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
}

.highlight {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* IMAGEM DIREITA */
.image-right {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.image-container {
  width: 150%;
  height: 500;       /* ← ALTURA FIXA */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  transition: all 0.4s ease;
}

.image-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.9) 100%);
  color: white;
  padding: 1.5rem;
}

.image-caption h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.image-caption p {
  opacity: 0.95;
  font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .split-mission {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .image-right {
    order: -1;  /* Imagem no topo */
  }
  
  .image-container {
    height: 280px;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .image-container {
    height: 240px;
  }
  
  .split-mission {
    gap: 2rem;
  }
}
/* IMAGEM RESPONSIVA 100% */
.responsive-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;        /* Preenche sem distorcer */
  object-position: center;
  display: block;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-btn {
  display: block;
  position: relative;
  max-width: 500px;         /* Largura máxima */
  margin: 0 auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.image-btn:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay span {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

/* RESPONSIVO - BREAKPOINTS PERFEITOS */
@media (max-width: 1200px) {
  .image-btn { max-width: 450px; }
}

@media (max-width: 992px) {
  .image-btn { max-width: 400px; }
}

@media (max-width: 768px) {
  .image-btn { 
    max-width: 100%; 
    margin: 0 1rem; 
  }
  
  .image-overlay span {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .image-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .image-overlay span {
    font-size: 1.1rem;
  }
}
/* MENU MOBILE ✅ */
.hamburger {
  display: none;                    /* ← Escondido desktop */
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #000000;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transition: left 0.4s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white !important;
  transform: scale(1.05);
}

/* RESPONSIVO ✅ 992px UNIFICADO */
@media (max-width: 992px) {
  .nav { display: none !important; }     /* ← Esconde desktop */
  .hamburger { display: block !important; }  /* ← Mostra hamb */
  .topbar { justify-content: space-between; padding: 0 20px; }
}