 /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONTES GOOGLE */
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@400;600&family=Ruda:wght@400;700&family=Sugar+Pie&display=swap');

/* VARIÁVEIS */
:root {
  --azul: #1274CC;
  --azul-claro: #5AA7F6;
  --amarelo: #F8D25C;
  --preto: #222222;
  --branco: #ffffff;
  --fundo: #CDEAFF;

  --fonte-destaque: 'Sugar Pie', cursive;
  --fonte-divertida: 'Playpen Sans', cursive;
  --fonte-seria: 'Ruda', sans-serif;
  --fonte-padrao: 'Poppins', sans-serif;
}

/* BODY */
body {
  background: var(--fundo);
  color: var(--preto);
  min-height: 100vh;
  overflow-x: hidden;
  padding: 20px;
  position: relative;
}

/* FUNDO */
.fundo-completo {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

/* A imagem real de fundo com desfoque */
.fundo-completo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../IMAGENS/FUNDO.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -1;
}

/* Camada escurecedora opcional */
.fundo-completo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 116, 150, 0.404);
  z-index: 0;
}


/* MENU PATINHA */
.menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  z-index: 1001;
  cursor: pointer;
}

.menu-btn img {
  width: 55px;
  height: 55px;
  filter: drop-shadow(2px 2px 4px rgba(250, 249, 249, 0.4));
  transition: transform 0.2s ease;
}

.menu-btn img:hover {
  transform: scale(1.1);
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: 80px;
  right: 20px;
  background: rgba(16, 114, 170, 0.342);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 15px 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(248, 246, 246, 0.3);
  transition: all 0.3s ease-in-out;
  text-align: right;
  }

.submenu a {
  color: var(--amarelo);
  font-size: 16px;
  font-family: var(--fonte-divertida);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.submenu.mostrar {
  display: block;
}

.submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  margin-bottom: 10px;
  text-align: right;
}

.submenu a {
  color: var(--branco);
  text-decoration: none;
  font-weight: bold;
  font-family: var(--fonte-seria);
}


/* LOGO */
.logo {
  display: block;
  margin: 10px auto 30px;
  width: 160px;
}

/* SLOGAN */
.frase-central {
  text-align: center;
  margin: 10px auto 25px auto;
  line-height: 1.4;
  color: var(--azul);
  font-size: 1.4em;
}

.frase-central .parte1 {
  font-family: var(--fonte-destaque);
  display: block;
  font-size: 1.3em;
  font-weight: 300;
  color: var(--branco);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); 
}

.frase-central .parte2 {
  font-family: var(--fonte-padrao);
  font-size: 0.9em;
  color: var(--amarelo);
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(248, 210, 92, 0.5); 
  display: block;
  margin-top: 5px;
}


/* BOTÕES PRINCIPAIS - AJUSTADOS */
.botoes-principais {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px auto 60px auto;
  max-width: 600px;
  padding: 0 20px;
}

.botao-amarelo,
.botao-azul {
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.botao-amarelo {
  background: linear-gradient(to bottom, #ffde59, #e6bf26);
  color: #000;
}

.botao-azul {
  background: linear-gradient(to bottom, #074286, #2667e0);
  color: #fff;
}

.botao-amarelo:hover,
.botao-azul:hover {
  transform: scale(1.1);
}


/* BOLHAS DE REDES SOCIAIS */
.redes-sociais {
  margin: 30px auto;
  width: 200px;
  height: 80px;
  position: relative;
  z-index: 15;
}

/* ESTILO BASE DAS BOLHAS */
.bolha {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(253, 254, 255, 0.6), rgba(76, 128, 234, 0.3));
  border-radius: 50%;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7f7f8;
  animation: flutuar 4s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: absolute;
}

/* ÍCONES */
.bolha i {
  font-size: 26px;
  color: #044d6e;
}

/* HOVER */
.bolha:hover {
  transform: scale(1.3);
}

/* POSICIONAMENTO INDIVIDUAL */
.bolha.whatsapp {
  left: 30%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  z-index: 2;
}

.bolha.facebook {
  left: 0;
  bottom: 0;
}

.bolha.instagram {
  right: 0;
  bottom: 0;
}

/* LINK CLEAN */
.redes-sociais a {
  text-decoration: none !important;
  outline: none;
}

/* ANIMAÇÃO */
@keyframes flutuar {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}


/* RODAPÉ */
footer {
  text-align: center;
  font-size: 14px;
  color: var(--branco);
  line-height: 1.4;
  background: transparent;
  padding: 20px 10px;
}

footer p {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

/*  RESPONSIVO RODAPÉ*/
@media (max-width: 480px) {
  footer {
    font-size: 12px;
    line-height: 1.3;
  }
}
