@media screen and (min-width: 768px) {
  /* A regra acima define uma *media query*, ou seja:
     O CSS dentro dessas chaves só será aplicado quando
     a largura da tela for de **768 pixels ou mais**. 
     (Isso geralmente significa tablets em paisagem ou telas de desktop menores.) */
body {
  min-height: 100vh;
  background-color: var(--objetivo-blue-dark);
  margin: 0;
}
  #container{
    display: grid;
    grid-template-areas: 
      "header"
      "aside"
      "main"
      "footer";
      height: 100vh;
    /* cada área ocupa 1 coluna — mais simples para mobile */
  }
header{
grid-area: header;
    height: 2.75rem;
    background-color: var(--objetivo-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem; /* simplificação do shorthand */
}
/* ----- MENU PRINCIPAL ----- */
.menu {
  display: flex;
  gap: 1rem;                    /* espaçamento entre os links */
  justify-content: center;
  align-items: center;
  background: transparent;      /* fundo transparente */
  padding: 0.75rem 1rem;
}

/* Links do menu */
.menu a {
  color: var(--cinza-cz);               /* texto branco */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: transparent;      /* transparente por padrão */
  font-weight: 500;
}

/* Hover e foco */
.menu a:hover,
.menu a:focus {
  /*background-color: #001a4a;    /* fundo azul escuro ao passar o mouse */
  color: var(--azul-polinesio);               /* mantém o texto branco */
  outline: none;
}
:root{
  --banner-overlay: rgba(0, 0, 0, 0.6); /* ajuste a cor/alpha aqui (0.6 = 60%) */
  --banner-min-height: 50rem;
}

#banner{
  position: relative;               /* necessário para o ::before posicionar-se */
  background-image: url("assets/capa01.webp");
  background-size: cover;           /* cobre todo o contêiner mantendo proporção */
  background-position: center center;
  background-repeat: no-repeat;
  min-height: var(--banner-min-height);
  display: flex;
  align-items: center;              /* centraliza verticalmente o conteúdo */
  justify-content: center;          /* centraliza horizontalmente o conteúdo */
  color: #fff;                      /* texto sobre o overlay */
  overflow: hidden;                 /* evita overflow do pseudo-elemento */
  z-index: 0;                       /* cria contexto de empilhamento */
}

/* Overlay com alpha 60% sem afetar filhos */
#banner::before{
  content: "";
  position: absolute;
  inset: 0;                         /* top:0; right:0; bottom:0; left:0; */
  background: var(--banner-overlay);
  z-index: 1;
  pointer-events: none;             /* permite clicar em elementos do banner */
}

/* Conteúdo do banner acima do overlay */
.banner-content{
  position: relative;
  z-index: 2;                       /* acima do overlay */
  padding: 2rem;
  text-align: center;
}

.textotopo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.textotopo h1{
color: var(--amarelo-tangerina);
font-size: 4rem;
font-family:"Lora",sans-serif ;
font-weight: 600;
z-index: 2;
}
.textotopo h2{
font-size: 2rem;
font-family: "Montserrat",sans-serif;
font-weight: 500;
z-index: 2;
}
main {
  width: 1064px;
  display: flex;
  flex-direction: column; /* empilha os filhos na vertical */
  align-items: stretch;   /* filhos ocupam toda a largura interna */
  margin: 0 auto;         /* CENTRALIZA horizontalmente */
}
.blsEst {
  display: grid;
  grid-template-areas: 
    "imgtbls amontoado";
  grid-template-columns: 1fr 1fr; /* duas colunas iguais */
  gap: 1rem; /* espaço entre os elementos */
  margin:0 auto;
  padding: 1rem;
}
.lugar {
  text-align: center;
  width: 100%; /* ocupa toda a largura disponível */
  height: auto; /* ajusta de acordo com o conteúdo */
}
  .lugar:nth-child(1) {
    background-color: var(--amarelo-tangerina);
  }
.imgtbls {
  grid-area: imgtbls;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
  background: url("assets/aluna011.webp");
  background-size: cover;     /* imagem cobre todo o espaço */
  background-position: center;/* garante centralização */
  background-repeat: no-repeat;
  height: 43vh;               /* altura proporcional à viewport */
  width: 100%;                /* ocupa toda a largura do grid */
}

.amontoado {
  grid-area: amontoado;
}
.amontoado p:nth-child(1){
  font-family: "Graviola", sans-serif;
  font-size: 3rem;
  font-weight: 600;
   color: var(--azul-polinesio);
}
.amontoado p:nth-child(2),
.amontoado p:nth-child(6){
font-family: "Montserrat", sans-serif;
font-size: 1.5rem;
font-weight: 600;
 color: var(--azul-polinesio);
}

.amontoado p:nth-child(3),
.amontoado p:nth-child(4),
.amontoado p:nth-child(5){
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--azul-azul);
}

.inscreva {
  margin-top: 1rem;
  display: inline-block;
  background-color: var(--azul-pedra-lua); /* azul turquesa */
  color: #0033cc;            /* azul-azul */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* animação ao passar o mouse */
.inscreva:hover {
  background-color:var(--azul-bizantino); /* azul turquesa mais escuro */
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* leve efeito ao clicar */
.inscreva:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.blsVideo {
  display: grid;
  grid-template-areas: 
    "imgsO blsVideo1";
  grid-template-columns: 1fr 1fr; /* duas colunas iguais */
  gap: 1rem; /* espaço entre os elementos */
  background-color: var(--azul-pedra-lua);
}
video.menina{
  border-radius: 1.5rem;
  box-shadow: -8px 5px 4px  rgba(0, 12, 0, 0.2);/*<offset-x> <offset-y> <blur-radius> <spread-radius> <color>; 
*/
width: 300px;
margin: 1rem auto;
}
.imgVd{
grid-area: imgVd;
}
.imgsO{
grid-area: imgsO;
display: flex;
flex-direction: column;
justify-content: space-around;
margin-left: 2rem;
}
.blsVideo1{
grid-area: blsVideo1;
}
.imglogo{
  grid-area: imglogo;
}

video.lugare{
  margin:0 auto;
}
.apelo {
  display: grid;
  grid-template-areas: "vdd txtt";
  grid-template-columns: 1fr 1fr; /* metade/metade */
  align-items: center;
  gap: 1rem;
  background-color: var(--objetivo-white);
  padding: 1rem;
}

/* Vídeo */
.lugare {
  grid-area: vdd;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

/* Texto */
.txtto {
  grid-area: txtt;
  color: var(--azul-polinesio);
  font-family: "Montserrat",sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  padding-left: 1rem;
}
.profs{
  display: flex;
  flex-direction: column;
  justify-content: center;
    margin-bottom: 3rem;
}
.profs p{
  color: white;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
img.imgprofs{
  margin: 0 auto;
  width: 100%;
  box-shadow: -8px 5px 4px  rgba(0, 0, 0, 0.2);/*<offset-x> <offset-y> <blur-radius> <spread-radius> <color>; */
}
.btnanimado{
  background-color: var(--azul-bizantino);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btnanimado:hover {
  background-color: var(--azul-polinesio); /* Azul mais escuro */
  transform: scale(1.03); /* Aumenta levemente */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Sombra suave */
}
footer {
  display: grid;
  grid-template-rows: auto auto; /* duas linhas: uma para cada bloco */
  justify-items: center;         /* centraliza horizontalmente o conteúdo das células */
  align-items: center;           /* centraliza verticalmente cada célula */
  text-align: center;
  background-color: var(--objetivo-blue-dark); /* cor de fundo do rodapé */
  color: #fff;
  width: 100%;
}

/* BLOCO SUPERIOR */
.roda01 {
  background-color: var(--amarelo-tangerina);
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.roda01 h1 {
  color: #001f3f;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.roda01 h2 {
  color: tomato;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.8rem 0;
}

.roda01 .btnanimado {
  background-color: var(--azul-bizantino);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.roda01 .btnanimado:hover {
  background-color: var(--azul-polinesio);
  transform: scale(1.05);
}

/* BLOCO INFERIOR */
.footerst {
  background-color: var(--objetivo-blue-dark);
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footerst .loguint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footerst .loguint img {
  max-height: 50px;
  object-fit: contain;
}

.footerst .contato p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;     /* distância da borda inferior */
  right: 20px;      /* distância da borda direita */
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;    /* garante que fique acima de tudo */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp img {
  width: 28px;
  height: 28px;
  filter: invert(100%) brightness(200%); /* deixa o ícone branco */
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


  }/*fim de media screen*/