/* =============================================
   CEVIM - Centro Educacional Vidal Miguez
   style.css  |  Mobile-first
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Azuis navais da logo */
  --azul:        #2756A8;
  --azul-escuro: #1A3D7C;
  --azul-deep:   #112559;

  /* Verde florestal (substitui vermelho) */
  --verde:       #2A6B3C;
  --verde-v:     #358A4D;

  /* Dourado da borda da logo */
  --amarelo:     #C9A227;
  --amarelo-cl:  #E0C060;

  /* Neutros */
  --branco:      #FFFFFF;
  --cinza-bg:    #F4F6F9;
  --cinza-claro: #E8EDF5;
  --texto:       #0E1C33;
  --texto-leve:  #4A6080;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--branco);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ---- UTILITÁRIOS ---- */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--amarelo);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 50px);
  line-height: 1.12;
  color: var(--azul-deep);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--azul); }

.section-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--texto-leve);
  line-height: 1.75;
  max-width: 580px;
}

.btn-primary {
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--verde);
}
.btn-primary:hover {
  background: var(--verde-v);
  border-color: var(--verde-v);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,107,60,0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--branco);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
  transform: translateY(-2px);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--azul-deep);
  border-bottom: 3px solid var(--amarelo);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1180px;
  margin: 0 auto;
  transition: padding 0.3s;
}
.navbar.scrolled .navbar-inner { padding: 6px 20px; }

@media (min-width: 600px) {
  .navbar-inner { padding: 12px 32px; }
  .navbar.scrolled .navbar-inner { padding: 8px 32px; }
}
@media (min-width: 1024px) {
  .navbar-inner { padding: 14px 40px; }
  .navbar.scrolled .navbar-inner { padding: 8px 40px; }
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amarelo);
  flex-shrink: 0;
}
@media (min-width: 600px) { .nav-logo-img { width: 54px; height: 54px; } }
@media (min-width: 1024px) { .nav-logo-img { width: 64px; height: 64px; } }

.nav-logo-info { line-height: 1.25; }
.nav-logo-info .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--branco);
  display: block;
}
.nav-logo-info .tagline {
  font-size: clamp(12px, 2vw, 18px);
  color: var(--amarelo);
  font-weight: 600;
  display: block;
}

/* Desktop links — ocultos por padrão */
.nav-links { display: none; }
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}
@media (min-width: 1024px) { .nav-links { gap: 32px; } }

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--amarelo); }

.nav-links .cta-link {
  background: var(--verde);
  color: var(--branco) !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}
.nav-links .cta-link:hover {
  background: var(--verde-v);
  transform: translateY(-1px);
}

/* Botão hambúrguer */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* Menu mobile dropdown */
.nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--azul-escuro);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile.open { max-height: 420px; }

@media (min-width: 900px) { .nav-mobile { display: none !important; } }

.nav-mobile a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background: rgba(255,255,255,0.06); color: var(--amarelo); }

.nav-mobile .cta-mobile {
  margin: 14px 20px 16px;
  background: var(--verde);
  color: var(--branco) !important;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  border-bottom: none;
}
.nav-mobile .cta-mobile:hover { background: var(--verde-v); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  background: var(--azul-deep);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* diagonal — só aparece em telas largas */
.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 0; bottom: 0;
  width: 45%;
  background: var(--azul-escuro);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  display: none;
}
@media (min-width: 900px) { .hero::after { display: block; } }

.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--amarelo), var(--azul));
  z-index: 10;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 92px 20px 50px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  gap: 36px;
  position: relative;
  z-index: 5;
}
@media (min-width: 600px)  { .hero-content { padding: 108px 32px 56px; } }
@media (min-width: 900px)  {
  .hero-content {
    flex-direction: row;
    align-items: center;
    padding: 120px 40px 80px;
    gap: 60px;
  }
}

.hero-left { flex: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,184,48,0.35);
  padding: 7px 14px;
  border-radius: 30px;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  animation-delay: 0.15s;
}
.hero-eyebrow .star { color: var(--amarelo); font-size: 12px; }
.hero-eyebrow span {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 76px);
  line-height: 1.08;
  color: var(--branco);
  margin-bottom: 10px;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.hero-title em { color: var(--amarelo); font-style: italic; }

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 2.2vw, 20px);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  animation-delay: 0.42s;
}

.hero-desc {
  font-size: clamp(14px, 2.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  animation-delay: 0.55s;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  animation-delay: 0.68s;
}

/* Stat cards */
.hero-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
@media (min-width: 900px) {
  .hero-right {
    flex-direction: column;
    flex-wrap: nowrap;
    width: auto;
    flex-shrink: 0;
    animation-name: fadeRight;
  }
}

.hero-card {
  flex: 1;
  min-width: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 14px;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 600px) { .hero-card { padding: 18px 20px; min-width: 130px; } }
@media (min-width: 900px) { .hero-card { padding: 22px 28px; min-width: 210px; } }
.hero-card:hover { background: rgba(255,255,255,0.13); border-color: var(--amarelo); }

.hero-card .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card .label {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media (min-width: 600px) { .hero-card .label { font-size: 11px; } }

.hero-scroll {
  position: relative; z-index: 5;
  text-align: center; padding-bottom: 22px;
}
.hero-scroll .arrow {
  width: 32px; height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  animation: bounce 2s ease infinite;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre { padding: 64px 0; background: var(--branco); }
@media (min-width: 1024px) { .sobre { padding: 100px 0; } }

.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}

.sobre-visual { position: relative; }

.sobre-card-main {
  background: var(--azul);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) { .sobre-card-main { padding: 40px; } }
@media (min-width: 1024px) { .sobre-card-main { padding: 48px; } }

.sobre-card-main::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.sobre-card-main::after {
  content: '';
  position: absolute; bottom: -30px; left: -20px;
  width: 120px; height: 120px;
  background: rgba(17,37,89,0.3); border-radius: 50%;
}

.sobre-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 14vw, 90px);
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: -14px;
  position: relative;
}
.sobre-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--branco);
  margin-bottom: 12px;
  position: relative;
}
.sobre-card-text {
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  position: relative;
}

.sobre-badge {
  position: absolute;
  bottom: -18px; right: 16px;
  background: var(--verde);
  color: var(--branco);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(42,107,60,0.4);
  line-height: 1.3;
}
@media (min-width: 600px) {
  .sobre-badge { right: 28px; padding: 14px 22px; font-size: 13px; bottom: -20px; }
}
.sobre-badge .big { font-size: 18px; font-family: 'Cormorant Garamond', serif; display: block; }
@media (min-width: 600px) { .sobre-badge .big { font-size: 22px; } }

.pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 16px;
  background: var(--cinza-bg);
  border-radius: 10px;
  border-left: 4px solid var(--azul);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pillar:hover { transform: translateX(5px); box-shadow: 0 4px 18px rgba(0,0,0,0.08); border-color: var(--verde); }
.pillar .icon { font-size: 20px; margin-top: 1px; flex-shrink: 0; }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--azul-deep); margin-bottom: 3px; }
.pillar-desc { font-size: 13px; color: var(--texto-leve); line-height: 1.5; }

/* =============================================
   ENSINO
   ============================================= */
.ensino { padding: 64px 0; background: var(--azul-deep); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .ensino { padding: 100px 0; } }
.ensino::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--amarelo), var(--azul));
}

.ensino-header { text-align: center; margin-bottom: 40px; }

.ensino-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .ensino-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ensino-grid { grid-template-columns: repeat(3, 1fr); } }

.nivel-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .nivel-card { padding: 36px 28px; } }
.nivel-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--amarelo);
  transform: scaleX(0); transition: transform 0.4s;
}
.nivel-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(232,184,48,0.4); transform: translateY(-5px); }
.nivel-card:hover::after { transform: scaleX(1); }

.nivel-icon { font-size: 32px; margin-bottom: 14px; }
.nivel-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 3vw, 22px); color: var(--branco); margin-bottom: 6px; }
.nivel-age { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amarelo); margin-bottom: 12px; }
.nivel-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 16px; }
.nivel-list { display: flex; flex-direction: column; gap: 7px; }
.nivel-list li { font-size: 13px; color: rgba(255,255,255,0.6); padding-left: 16px; position: relative; }
.nivel-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; background: var(--verde); border-radius: 50%;
}

/* =============================================
   ESTRUTURA
   ============================================= */
.estrutura { padding: 64px 0; background: var(--cinza-bg); }
@media (min-width: 1024px) { .estrutura { padding: 100px 0; } }

.estrutura-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .estrutura-grid { grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; } }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
@media (min-width: 480px) { .feat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }

.feat-item {
  background: var(--branco);
  border-radius: 12px; padding: 16px 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s; cursor: default;
}
.feat-item:hover { border-color: var(--azul); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(39,86,168,0.15); }
.feat-item .fi { font-size: 24px; margin-bottom: 7px; }
.feat-item .fl { font-size: 12px; font-weight: 600; color: var(--azul-deep); line-height: 1.3; }

.diferenciais { display: flex; flex-direction: column; gap: 20px; }
.dif-item { display: flex; align-items: flex-start; gap: 16px; }
.dif-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--azul); opacity: 0.25; line-height: 1; flex-shrink: 0; width: 44px; }
.dif-title { font-size: 15px; font-weight: 700; color: var(--azul-deep); margin-bottom: 4px; }
.dif-desc { font-size: 13px; color: var(--texto-leve); line-height: 1.6; }

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos { padding: 64px 0; background: var(--branco); }
@media (min-width: 1024px) { .depoimentos { padding: 100px 0; } }

.depo-header { text-align: center; margin-bottom: 40px; }

.depo-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .depo-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .depo-grid { grid-template-columns: repeat(3, 1fr); } }

.depo-card {
  background: var(--cinza-bg); border-radius: 14px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
@media (min-width: 600px) { .depo-card { padding: 32px; } }
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.09); border-color: var(--azul); }

.depo-quot { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--azul); line-height: 0.5; opacity: 0.3; margin-bottom: 14px; }
.depo-text { font-size: 15px; line-height: 1.7; color: var(--texto); margin-bottom: 20px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-av { width: 40px; height: 40px; background: var(--azul); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--branco); font-weight: 700; flex-shrink: 0; }
.depo-name { font-size: 14px; font-weight: 700; color: var(--azul-deep); }
.depo-role { font-size: 12px; color: var(--texto-leve); }

/* =============================================
   CONTATO
   ============================================= */
.contato { padding: 64px 0; background: var(--azul-deep); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .contato { padding: 100px 0; } }

.contato::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(39,86,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contato::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--amarelo), var(--azul));
}

.contato-inner { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 2; }
@media (min-width: 900px) { .contato-inner { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }

.contato-left .section-title { color: var(--branco); }
.contato-left .section-desc { color: rgba(255,255,255,0.6); }

.info-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.65); font-size: 14px; }
.info-row .ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.form-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 24px 20px;
  backdrop-filter: blur(10px);
}
@media (min-width: 600px) { .form-box { padding: 36px 32px; } }
@media (min-width: 1024px) { .form-box { padding: 40px; } }

.form-box-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 24px); color: var(--branco); margin-bottom: 6px; }
.form-box-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 22px; }

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.form-row input,
.form-row select {
  width: 100%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 13px 16px;
  color: var(--branco); font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none; -webkit-appearance: none;
}
.form-row input::placeholder { color: rgba(255,255,255,0.22); }
.form-row input:focus,
.form-row select:focus { border-color: var(--amarelo); background: rgba(255,255,255,0.13); }
.form-row select option { background: var(--azul-deep); color: var(--branco); }

.form-btn {
  width: 100%; background: var(--verde); color: var(--branco);
  border: none; padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; font-family: 'Source Sans 3', sans-serif;
  transition: all 0.3s; margin-top: 8px;
}
.form-btn:hover { background: var(--verde-v); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,107,60,0.4); }
.form-btn:active { transform: translateY(0); }

/* Toast */
.toast {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--azul); color: var(--branco);
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  transform: translateY(120px); opacity: 0;
  transition: all 0.4s ease; z-index: 999;
  border-left: 4px solid var(--amarelo);
}
@media (min-width: 480px) {
  .toast { left: auto; right: 24px; bottom: 24px; min-width: 280px; max-width: 360px; }
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #060D1E; padding: 32px 20px; border-top: 3px solid var(--amarelo); }
@media (min-width: 600px) { .footer { padding: 40px 32px; } }

.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--amarelo); flex-shrink: 0;
}

.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-sub { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; margin-top: 2px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* =============================================
   ANIMAÇÕES
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
