/* ==========================================================
   INOVAEDUC — Stylesheet (Dark Theme v3)
========================================================== */

:root {
  --bg-dark:   #09100F;
  --orange:    #F26522;
  --teal-dark: #0D6E6E;
  --teal-mid:  #2BA8A8;
  --gold:      #C8A96E;
  --white:     #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.45);
  --border-color: rgba(255, 255, 255, 0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────────
   TIPOGRAFIA GLOBAL & TAGS
───────────────────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-title .accent { color: var(--orange); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 300;
}


.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem; 
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────
   NAVEGAÇÃO
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(9, 16, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Define o espaçamento ideal entre a logo e o nome */
  text-decoration: none;
}

.nav-logo img {
  height: 38px; /* Controla o tamanho da sua logo. Aumente ou diminua se precisar */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

.logo-text span { 
  color: var(--orange); 
}


.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: rgba(255,255,255,0.85); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* Menu Mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 150; background: rgba(9,16,15,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; text-decoration: none; }

/* ─────────────────────────────────────────────────────────
   HERO v3
───────────────────────────────────────────────────────── */
.hero { 
  padding: 120px 5% 6rem; 
  display: flex; flex-direction: column; align-items: center; 
  position: relative; overflow: hidden; 
}
.glow { position: absolute; top: 60px; left: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(13,110,110,0.28) 0%, transparent 70%); pointer-events: none; }

.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; padding: 6px 14px 6px 8px; margin-bottom: 28px; position: relative; z-index: 2; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-mid); box-shadow: 0 0 8px rgba(43,168,168,0.8); }
.badge-txt { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.badge-pill { background: rgba(43,168,168,0.2); color: var(--teal-mid); font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 50px; }

.title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.03; color: var(--white); text-align: center; max-width: 720px; margin-bottom: 18px; position: relative; z-index: 2; letter-spacing: -0.5px; }
.title em { font-style: italic; color: var(--gold); }
.title .accent { color: var(--orange); font-style: normal; }


.sub { 
  font-size: 1.15rem; 
  color: rgba(255,255,255,0.65); 
  line-height: 1.7; 
  max-width: 650px; 
  text-align: center; 
  font-weight: 300; 
  margin-bottom: 40px; 
  position: relative; z-index: 2; 
}

.ctas { display: flex; gap: 10px; align-items: center; margin-bottom: 60px; position: relative; z-index: 2; flex-wrap: wrap; justify-content: center; }
.cta-p { background: var(--orange); color: var(--white); font-size: 0.9rem; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 0 28px rgba(242,101,34,0.4); transition: transform 0.2s; }
.cta-p:hover { transform: translateY(-2px); }
.cta-s { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.75); font-size: 0.9rem; padding: 14px 24px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
.cta-s:hover { background: rgba(255,255,255,0.1); }

/* CARDS DE PROGRAMAS */
.cards-row { 
  display: flex; gap: 24px; width: 100%; max-width: 980px; 
  justify-content: center; position: relative; z-index: 2; 
}
.card { 
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 16px; 
  padding: 36px; 
  flex: 1; 
  text-align: left; 
  position: relative; 
  overflow: hidden; 
  transition: background 0.3s, transform 0.3s; 
  display: flex;
  flex-direction: column; 
}
.card:hover { 
  background: rgba(255,255,255,0.06); 
  transform: translateY(-5px); 
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.card-m::before { background: linear-gradient(90deg, var(--teal-dark), var(--teal-mid)); }
.card-d::before { background: linear-gradient(90deg, var(--orange), var(--red)); }

.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.card-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.card-icon-teal { background: rgba(13,110,110,0.25); }
.card-icon-orange { background: rgba(242,101,34,0.2); }
.card-badge {
  font-size: 0.8rem; 
  font-weight: 800;   
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
}
.cb-teal {
  background: rgba(13, 110, 110, 0.15); 
  color: #fff; 
  
  
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8), 
    0 0 10px var(--teal-mid),          
    0 0 20px var(--teal-mid),          
    0 0 40px var(--teal-mid);          
  
  border: 1px solid rgba(43, 168, 168, 0.3); 
}
.cb-orange {
  background: rgba(242, 101, 34, 0.1); 
  color: #fff; 
  
  
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8), 
    0 0 10px var(--orange),            
    0 0 20px var(--orange),            
    0 0 40px var(--orange);            
    
  border: 1px solid rgba(242, 101, 34, 0.3); 
}

.card-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.card-desc { 
  font-size: 1.05rem; 
  color: var(--text-muted); 
  line-height: 1.65; 
  margin-bottom: 28px; 
  font-weight: 300; 
  flex-grow: 1; 
}
.card-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.cm { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.cm-dot { width: 8px; height: 8px; border-radius: 50%; }
.cm-dot-teal { background: var(--teal-mid); }
.cm-dot-orange { background: var(--orange); }

/* ─────────────────────────────────────────────────────────
   SEÇÃO DE CERTIFICAÇÃO INTERNACIONAL (Nova)
───────────────────────────────────────────────────────── */
.cert-section {
  padding: 5rem 5%;
  background: linear-gradient(90deg, rgba(13,110,110,0.05) 0%, rgba(9,16,15,1) 50%, rgba(13,110,110,0.05) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cert-seal {
  font-size: 5rem;
  color: var(--teal-mid);
  background: rgba(43,168,168,0.1);
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.cert-content {
  flex: 1;
}
.cert-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cert-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.cert-badge {
  background: rgba(242,101,34,0.15);
  color: var(--orange);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242,101,34,0.3);
  flex-shrink: 0;
}
/* ─────────────────────────────────────────────────────────
   PROMOÇÃO - AMIGO NOTA 10
───────────────────────────────────────────────────────── */
.promo-section {
  padding: 4rem 5% 6rem; 
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; 
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(242,101,34,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(242,101,34,0.2);
  border-radius: 24px;
  padding: 3rem 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}


.promo-inner::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: var(--orange);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.promo-icon {
  width: 90px; height: 90px;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.3);
  color: var(--orange);
  font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  flex-shrink: 0;
}

.promo-content {
  flex: 1;
}

.promo-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.promo-title .accent { color: var(--orange); }

.promo-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.promo-desc strong {
  color: var(--white);
  font-weight: 600;
}

.promo-action {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-shrink: 0;
  text-align: center;
}

.btn-promo {
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(242,101,34,0.3);
}
.btn-promo:hover {
  background: #E55520;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(242,101,34,0.4);
}

.promo-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}


@media (max-width: 1024px) {
  .promo-inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .promo-title { font-size: 1.8rem; }
  .btn-promo { width: 100%; }
}
/* ─────────────────────────────────────────────────────────
   FORMULÁRIO / LEAD
───────────────────────────────────────────────────────── */
.lead-section {
  padding: 6rem 5%;
  width: 100%; 
  
  
  border-top: 1px solid var(--border-color); 
  background: rgba(255,255,255,0.01);         
 
}
.lead-inner {
  max-width: 1200px; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.benefits-list li { display: flex; align-items: center; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; }
.benefits-list .icon { color: var(--teal-mid); background: rgba(43,168,168,0.1); padding: 8px; border-radius: 50%; font-size: 0.7rem; }

.form-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 20px; padding: 2.5rem; }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.form-group input { width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 8px; color: var(--white); outline: none; transition: border 0.3s; }
.form-group input:focus { border-color: var(--teal-mid); }
.btn-submit { width: 100%; padding: 14px; background: var(--orange); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background 0.3s; margin-top: 1rem; }
.btn-submit:hover { background: #E55520; }

/* ─────────────────────────────────────────────────────────
   EQUIPE
───────────────────────────────────────────────────────── */
.team-section { padding: 5rem 5%; border-top: 1px solid var(--border-color); background: rgba(255,255,255,0.01); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.carousel-wrap { display: flex; align-items: center; gap: 1rem; }
.carousel-track-wrap { flex: 1; overflow: hidden; }
.carousel-track { display: flex; gap: 1.5rem; transition: transform 0.45s ease; }
.team-card { flex: 0 0 calc((100% - 3rem) / 3); padding: 0; }
.team-photo-wrap { height: 280px; width: 100%; overflow: hidden; border-radius: 14px 14px 0 0; }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
#bruna1 img{
  object-position: 50% 16%;
  }
.team-body { padding: 1.5rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.team-role { font-size: 0.75rem; color: var(--teal-mid); text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }

.carousel-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); color: var(--white); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: background 0.3s; }
.carousel-btn:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color); border: none; cursor: pointer; }
.carousel-dot.active { background: var(--teal-mid); width: 24px; border-radius: 4px; }

/* ─────────────────────────────────────────────────────────
   FOOTER & WHATSAPP
───────────────────────────────────────────────────────── */
footer { padding: 4rem 5% 2rem; border-top: 1px solid var(--border-color); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--white); }
.footer-logo span { color: var(--orange); }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; color: var(--teal-mid); text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; }

.btn-whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 99; transition: transform 0.3s; }
.btn-whatsapp img { width: 60px; }
.btn-whatsapp:hover { transform: scale(1.1); }
.btn-whatsapp .tooltip-text{
  visibility: hidden;
  position: absolute;
  width: 120px;
  bottom: 1px;
  left: -144px;
  padding-bottom: 10px;
  border-radius: 8px;
  text-align: center;
  background-color: black;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 16px;
}
.btn-whatsapp:hover .tooltip-text{
  visibility: visible;
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .cards-row { flex-direction: column; padding: 0 5%; }
  .cert-inner { flex-direction: column; text-align: center; padding: 2rem; }
  .btn-whatsapp { right: 10px;}
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 100px; padding-bottom: 4rem; }
  .title { font-size: 2.2rem; }
  .lead-inner, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-card { flex: 0 0 100%; }
  .cert-seal { width: 80px; height: 80px; font-size: 3rem; margin: 0 auto; }
  .cert-title { font-size: 1.6rem; }
}