/* RESET ------------------------------------------------------ */
*{margin:0;padding:0;box-sizing:border-box}

/* PALETA ----------------------------------------------------- */
:root{
  --primary:#00a7b3;
  --font:'DM Sans',sans-serif;
}

/* BASE ------------------------------------------------------- */
body{
  font-family:var(--font);
  color:var(--primary);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
  overflow:hidden;
  padding:2rem;
}

/* WRAPPER ---------------------------------------------------- */
.wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3rem;              /* será zerado no mobile               */
  max-width:1280px;
  width:100%;
  height:100%;
  position:relative;
}

/* ---------- DESKTOP (≥ 851 px) ------------------------------ */
.mascotes-desktop{
  width:55%;
  max-width:1200px;
  height:auto;
  flex-shrink:0;
}

.mascotes-mobile{display:none;}

.texto{text-align:center;}

.texto h1{
  font-size:clamp(2.8rem,4vw,5rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-1px;
  margin-bottom:1rem;
}

.texto p{
  font-size:clamp(1.2rem,2.2vw,2rem);
  margin-bottom:2.5rem;
}

/* ÍCONES ----------------------------------------------------- */
.social{position:relative;display:inline-block;}

.icones{
  width:10rem;
  height:auto;
  display:block;
  pointer-events:none;
}

.social-link{
  position:absolute;
  top:0;
  width:33.3333%;
  height:100%;
  cursor:pointer;
  text-indent:-9999px;
}
.facebook {left:0;}
.instagram{left:33.3333%;}
.whatsapp {left:66.6666%;}

/* ---------- MOBILE (≤ 850 px) ------------------------------- */
@media (max-width:850px){
  body{overflow:hidden;}

  .wrapper{
    flex-direction:column;
    gap:0;                      /* tira o espaço padrão            */
    justify-content:center;
  }

  .mascotes-desktop{display:none;}
  .mascotes-mobile{
    display:block;
    width:min(85vw,28rem);
    height:auto;
    margin:0 auto;
  }

  /* sobe o texto sem sobrepor o doguinho ------------------- */
  .texto{
    position:static;
    transform:none;
    width:100%;
    max-width:90%;
    margin-top:-1.5rem;         /* ajuste fino da distância        */
  }

  .texto h1{font-size:2.3rem;}
  .texto p {font-size:1.15rem;margin-bottom:1.4rem;}
  .icones  {width:7rem;}
}

/* telas muito estreitas ------------------------------------- */
@media (max-width:667px){
  .texto{
    margin-top:-12rem;          /* ainda mais perto em devices tiny */
  }
  .texto h1{font-size:2rem;}
  .texto p {font-size:1rem;margin-bottom:1.1rem;}
}
/* UTIL de acessibilidade "não afeta layout" ----------- */
.sr-only{
  position:absolute !important;
  width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}