/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --bg: #0E0E0E;
  --surface: #111111;
  --text: #F5F5F5;
  --muted: #B3B3B3;
  --accent: #1FA463;
  --accent-dark: #0F5E3A;
}


/* CONFIGURAÇÕES GERAIS */
body {
  font-family: Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
/* Estrutura */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;

  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header-inner{
  min-height: 76px;
}

/* =========================
   LOGOS PADRONIZADAS (HEADER + FOOTER)
   ========================= */

.brand,
.footer-logos{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* a "caixinha" padrão das logos */
.brand img,
.footer-logos img{
  width: 64px;          /* tamanho visual igual */
  height: 64px;         /* tamanho visual igual */
  object-fit: contain;  /* NÃO corta, só encaixa */
  display: block;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 8px;
}

/* footer centralizado */
.footer-logos{
  justify-content: center;
  margin-bottom: 10px;
}
/* ===== ZOOM das logos dentro do container ===== */
.brand img,
.footer-logos img{
  transform: scale(1.18);      /* aumenta o "miolo" */
  transform-origin: center;
}


.logo-text {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-bg{
  background-image: url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* hero grande com pouca rolagem */
  min-height: calc(100vh - 90px);

  display: flex;
  align-items: center;
}


.hero-overlay{
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.35) 100%
  );
}

.hero-content{
  text-align: left;
  max-width: 700px;
}

.hero-content h2{
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-content p{
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Botão inscrição */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--accent-dark);
}

/* Botão wpp */
.wpp {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.wpp:hover {
  background-color: var(--accent-dark);
}

/* Seções */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
/* Seção das Aulas*/
.section.dark {
    background-color: #000;
    color: #fff;
}
/* Lista das aulas*/
.lista {
    list-style: none;
}

.lista li {
    margin-bottom: 10px;
    font-size: 18px;
}
.footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
/*botão do wpp - flutuante*/
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: var(--accent-dark);
}
 /* Botão flutuante Instagram */
.instagram-float{
  position: fixed;
  bottom: 80px;              /* fica acima do WhatsApp */
  right: 20px;

  background: linear-gradient(
    45deg,
    #F58529,
    #DD2A7B,
    #8134AF,
    #515BD4
  );

  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;

  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: transform .2s ease, opacity .2s ease;

  z-index: 999;
}

.instagram-float:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}

#inscricao p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* menu ativo */
.menu{
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.88;

  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.2s;
}

.menu a:hover{
  opacity: 1;
  background: rgba(255,255,255,0.06);
}

.menu a.active{
  opacity: 1;
  color: var(--accent);
  background: rgba(31,164,99,0.14);
  border: 1px solid rgba(31,164,99,0.22);
}

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card{
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
}

.card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card h3{
  margin-bottom: 6px;
}

.card p{
  color: var(--muted);
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 12px;
  margin-top: 18px;
}

.gallery-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

/* =========================
   PÁGINA: O PROFESSOR
   ========================= */

.page-hero{
  padding: 70px 0 30px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.00) 100%
  );
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero h1{
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.page-hero p{
  color: var(--muted);
}

/* GRID do topo (foto + texto) */
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: start;
}

/* Foto principal */
.about-photo{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

.about-photo img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 18%; /* sobe o enquadramento */
  display: block;
}

/* Texto */
.about-text h2{
  margin-bottom: 12px;
}

.about-text p{
  color: var(--muted);
  margin-bottom: 12px;
}

/* Badges */
.badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.badge{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
}

/* CTA */
.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Linha divisória */
.divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 38px 0;
}

/* Mini galeria (Momentos) */
.mini-gallery p{
  color: var(--muted);
  margin-bottom: 16px;
}

.mini-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-gallery-grid img{
  width: 100%;
  height: 260px;     /* <<< padrão de tamanho */
  object-fit: cover; /* <<< deixa tudo igual sem deformar */
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  display: block;
}

.mini-gallery-actions{
  margin-top: 16px;
}

body { overflow-x: hidden; }
/* =========================
   PÁGINA: AULAS
   ========================= */

.muted{ color: var(--muted); }

.info-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px;
}

.info-card h2{
  font-size: 18px;
  margin-bottom: 8px;
}

.info-card p{
  color: var(--muted);
}

.schedule-box{
  margin-top: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
}

.schedule-row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.schedule-row:last-child{
  border-bottom: none;
}

.tips-list{
  margin-top: 14px;
  padding-left: 18px;
}

.tips-list li{
  margin: 8px 0;
  color: var(--muted);
}

/* =========================
   PÁGINA: GALERIA
   ========================= */

.gallery-grid-page{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* 3 por linha no desktop (12/4 = 3) */
.gallery-grid-page img{
  grid-column: span 4;
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  display: block;
  transition: transform .18s ease, border-color .18s ease;
}

.gallery-grid-page img:hover{
  transform: translateY(-2px);
  border-color: rgba(31,164,99,0.35);
}
/* =========================
   LIGHTBOX (fullscreen)
   ========================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 2000;
}

.lightbox.active{
  opacity: 1;
  pointer-events: auto;
}

.lightbox img{
  max-width: 92%;
  max-height: 92%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
}

.lightbox-close{
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
}

.lightbox-close:hover{
  opacity: 1;
}

/* Setas do lightbox */
.lightbox-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  opacity: 0.7;
  user-select: none;
  transition: opacity .2s ease, transform .2s ease;
}

.lightbox-arrow:hover{
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.left{
  left: 24px;
}

.lightbox-arrow.right{
  right: 24px;
}

/* =========================
   PÁGINA: CONTATO
   ========================= */

.muted{ color: var(--muted); }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
}

.contact-card h2{
  margin-bottom: 8px;
}

.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}

.contact-info{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.info-item{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-label{
  color: var(--muted);
  font-size: 14px;
}

.info-value{
  font-weight: 600;
}

.contact-map{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.map-box{
  margin-top: 12px;
  min-height: 260px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}


/* =========================
   RESPONSIVIDADE - CELULAR
   ========================= */

@media (max-width: 768px) {

    /* HEADER */
    .logo-text {
        font-size: 22px;
        text-align: center;
    }

    /* HERO */
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
.header-inner{
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.brand img,
.footer-logos img{
  width: 52px;
  height: 52px;
  padding: 7px;
}
.brand img,
.footer-logos img{
  transform: scale(1.10);
}
 .hero-bg{
    min-height: calc(100vh - 120px);
    background-position: 60% center;
  }

.hero-overlay{
  padding: 110px 0;
}


  .hero-content{
    text-align: center;
    margin: 0 auto;
  }

  .hero-content h2{
    font-size: 34px;
  }

.hero-actions{
    justify-content: center;
  }
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-logos{
  display: flex;
  align-items: center;
  gap: 14px;
}


.footer-logos{
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu{
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}


    /* BOTÕES */
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    /* SEÇÕES */
    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 26px;
    }

    /* LISTA */
    .lista li {
        font-size: 16px;
    }

    /* WHATSAPP FLUTUANTE */
    .whatsapp-float {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* INSTAGRAM FLUTUANTE */
    .instagram-float{
  bottom: 74px;
  padding: 12px 16px;
  font-size: 14px;
}


/* Professor - Mobile */
.page-hero{ padding: 60px 0 20px; }
.page-hero h1{ font-size: 32px; }

.about-grid{ grid-template-columns: 1fr; }
.about-photo img{ height: 360px; }

.mini-gallery-grid{ grid-template-columns: 1fr; }
.mini-gallery-grid img{ height: 240px; }

.cta-row a{
  width: 100%;
  text-align: center;
}
/* ===== Ajuste botões no mobile (não virar blocão) ===== */
.hero-actions{
  flex-direction: column;
  align-items: center;
}

.hero-actions .btn,
.hero-actions .wpp{
  width: min(320px, 90%);
  padding: 14px 18px;
}
/*MENU AULAS*/
.info-cards{
    grid-template-columns: 1fr;
  }

  .schedule-row{
    grid-template-columns: 1fr;
  }
    .gallery-grid-page img{
    grid-column: span 12;
    height: 240px;
  }
   .lightbox-arrow{
    font-size: 34px;
    padding: 10px;
  }

}