
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui, sans-serif;
}


body {
    font-family: "Poppins", system-ui, sans-serif;
    background: #111;
    color: #ffffffe6;
    overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("/image/logo/icon.png") no-repeat center;
  background-size: 500px;

  opacity: .20;

  filter: grayscale(100%) brightness(0.4);
  
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background:#848063;
  border-radius: 10px;
}

/* NAVBAR */

.topo{
  position: relative;

display:flex;

justify-content:center;

align-items:center;

gap:70px;

padding:20px 40px;

margin:0;

background:#46453f;



}



/* LOGO */
.topo .links img{

height:60px;

width:auto;

display:flex;

max-height:60px;

}




/* MENU */
nav .links{

display:flex;

align-items:center;

gap:40px;

}



/* LINKS */
nav .links a{

color:rgba(255, 255, 255, 0.829);

text-decoration:none;

font-size:28px;

font-weight:500;

margin:0;

transition: 0.5s ease-in-out;


}


nav .links a:hover{
 border-bottom: solid 2px #f1db5f;
 color: #f1db5f;

}
.hamburger{
  color: #ffffffe6;
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.5s ease;
  user-select: none;
}

.hamburger.rotate{
  transform: rotate(180deg);
}


.theme-toggle {
  display: block;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);

  font-size: 22px;
  cursor: pointer;

  padding: 8px 12px;
  border-radius: 10px;

  transition: 0.3s ease;
}

.theme-toggle:hover {
  background: var(--card);
  transform: scale(1.05);
}

.lamp {
  width: 26px;
  height: 26px;
  color: #888; /* apagada padrão */
  transition: 0.4s ease;
}

  .theme-toggleMobile{
    display: none;
    
  }
/* 🌙 DARK = apagada */
body:not(.light) .lamp {
  color: #888;
}

/* ☀️ LIGHT = acesa */
body.light .lamp {
  color: #f1db5f;
  filter: drop-shadow(0 0 10px #f1db5f);
  transform: scale(1.1);
}
/* HERO */
.hero{
padding:100px 8%;
text-align:center;
}

.hero-title{
font-size:50px;
margin-bottom:20px;
}
.hero-title span{
  font-size: 50px;
  animation: textColor 6s ease-in-out infinite;
}
.hero-sub{
font-size:22px;
opacity:.8;
margin-bottom: 20px;
}

footer{ 

 background: rgb(47, 39, 39);
 display: flex;
 align-items: center;
 justify-content: center;
 
 flex-direction: column;
 
;
}
footer .title{
    margin: 12px;
    color: #ffffffe6;
    font-size: 30px;
    display: flex;   
}

footer .paragrafo{
    color: #f1db5f;
    font-size: 15px;
}

footer .paragrafo span{
    color: #d7be2d;
    font-size: 15px;
    padding-bottom: 15px;
}
footer a {
    font-size: 20px;
  animation: textColor 6s ease-in-out infinite;
  padding-bottom: 15px;
  padding-top: 5px;
}

@keyframes textColor {
  0% {
    color: #fff2a3;
  }
  50% {
    color: #362f04;
  }
  100% {
    color: #fff2a3;
  }
}

.contatocards{
    margin-bottom: 40px;

}

.footer-container{

display:flex;

justify-content:center;

gap:35px;

flex-wrap:wrap;

}


.footer-box{
background: linear-gradient(rgba(255, 255, 255, 0.05), #1c1801);

backdrop-filter:blur(10px);

border:1px solid rgba(241,219,95,.2);

border-radius:22px;

padding:35px 30px;

width:280px;

transition:.4s;

box-shadow:
0 10px 30px rgba(0,0,0,.25);

}


.footer-box:hover{

transform:translateY(-8px);

border-color:#f1db5f;

box-shadow:
0 15px 35px rgba(241,219,95,.15);

}


.footer-box img{

margin-bottom:15px;
filter: invert(1);



}



.footer-box h3{

font-size:24px;

color:#f1db5f;

margin-bottom:12px;

}
.footer-box a{
  display: flex;
  flex-direction: column;
  
}

.footer-box p,
.footer-box a{

font-size:15px;


animation:textColor 6s infinite !important;

}


.footer-box a:hover{

color:#f1db5f;

}


.footer-box .insta{
 display: block;
}



.final {
  background: linear-gradient(
    180deg,
    rgb(34,27,27),
    rgb(22,17,17)
  );
  padding: 30px 20px;
  color: #ffffff;
}

/* GRID */
.final .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* blocos */
.final .footer-bloco {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.final .footer-bloco .titulo {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}

/* textos */
.final .footer-bloco p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* links */
.final .footer-bloco a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.final .footer-bloco a:hover {
  text-decoration: underline;
}

/* =========================
   ÍCONES
========================= */

.icon {
  display: flex;
  align-items: center;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* hover ícone */
.footer-bloco p:hover .icon svg {
  transform: scale(1.1);
  opacity: 1;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copy {
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
}



.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #01fc48;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;

  /* animações */
  animation: float 2.5s ease-in-out infinite, pulse 1.8s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover (efeito clique) */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* movimento de flutuar */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* efeito de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 250, 165, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(19, 112, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0);
  }
}


@media (max-width:768px){
   
body::before {
  content: "";
 
  background-size: 350px;

  opacity: .1;
}

  
.topo{

padding:5px;

margin:5px;



border-radius:50px;

}


  .hamburger{
    display: block;
    font-size: 32px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }
  
.theme-toggle {
  display: none;
  margin-left: auto;
  margin-right: 10px;
}


  .theme-toggleMobile {
    display: flex;

     position: absolute;
    transform: translateY(-50%);
      right: 55px; /* encostado no hamburger */
    top: 50%;
    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: rgba(241, 219, 95, 0.15);
    backdrop-filter: blur(10px);

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

    z-index: 1;
  }

  .theme-toggleMobile:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(241, 219, 95, 0.25);
  }


  /* MENU */
  .links{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(54, 47, 4, 0.85);
    backdrop-filter: blur(12px);
    padding: 90px 20px;
    gap: 20px;
    transition: 0.5s ease;
    z-index: 1001;
  }

  .links.active{
    left: 0;
  }

  .links a{
    font-size: 22px;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s ease;
  }

  .links.active a{
    opacity: 1;
    transform: translateX(0);
  }

  /* OVERLAY BLUR */
  .overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 1000;
  }

  .overlay.active{
    opacity: 1;
    visibility: visible;
  }
  .hero-title{
    font-size :23.4px;
  }
  .final{
    max-width: 600px;
   
    margin: 0 auto;
  }

.final .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left; /* 🔥 muda isso */
  }
   #email {
    display: block;
  }

  #email::before {
    content: "";
    display: block;
  }

  #email {
    margin-top: 4px;
  }

  /* faz o container virar coluna SÓ nesse caso */
  #email {
    align-self: flex-start;
  }

  #email  a{
    font-size: 12px;
  }
 

  .final .footer-bloco {
    align-items: flex-start; /* 🔥 importante */
  }

  .final .footer-bloco p {
    display: flex;
    justify-content: flex-start; /* 🔥 alinha texto */
  }

  .footer-copy {
    text-align: center; /* mantém só ele centralizado */
  }

}
/* =========================
   LIGHT MODE
========================= */

body.light {
  /* FUNDO (era #111) */
  --bg: #f4f1e8;

  /* NAV (era #302a0a) */
  --nav: #e8e1c7;

  /* FOOTER (era rgb(47,39,39)) */
  --footer: #ddd6c3;

  /* FINAL */
  --final: #d8cfb8;

  /* TEXTO */
  --text: #2a2415;
  --text-soft: rgba(42, 36, 21, 0.65);

  /* DOURADO (mantido, só suavizado) */
  --primary: #d4bc4a;
  --primary-strong: #b79d2f;

  /* CARDS */
  --card: #c4f7f7;
  --border: #022c2c;

  --shadow: rgba(0,0,0,0.08);
}

/* BASE */
body.light {
  background: var(--bg);
  color: var(--text);
}

/* NAVBAR */
body.light .topo {
    background: #8edfdf;
  box-shadow: 0 8px 25px var(--shadow);
}

/* LINKS */
body.light nav .links a {
  color: var(--text);
}

body.light nav .links a:hover {
color: #ffffff97;
  border-bottom: 2px solid var(--primary);
}

/* HERO */
body.light .hero {
  color: var(--text);
}

body.light .hero-title span{
  
  animation: none;

  background: linear-gradient(90deg, #8edfdf, #3d7777, #8edfdf);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

/* FOOTER */
body.light footer {
  background: var(--footer);
}

body.light footer .title {
  color: var(--text);
}

body.light footer .paragrafo {
  color: var(--primary);
}

body.light footer .paragrafo span {
  color: var(--primary-strong);
}

/* CARDS */
body.light .footer-box {
  background: #8edfdf;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px var(--shadow);
}

/* HOVER NO LIGHT MODE */
body.light .footer-box:hover {
  transform: translateY(-8px);

  border-color: #3d7777;

  /* sombra dourada mais visível no fundo claro */
  box-shadow: 0 15px 35px rgba(36, 31, 4, 0.35);

  background:#88bebe /* leve destaque */
}
body.light  .footer-container .footer-box p,
body.light  .footer-container .footer-box a{
  animation: none !important;
  
}
body.light .footer-box a{
  
  animation: none !important;

  background: linear-gradient(90deg, #8edfdf, #3d7777, #8edfdf);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light .footer-box img{
  filter: none;
}

body.light .final {
  background: linear-gradient(
    180deg,
    #e9e4d4,
    #ddd6c3
  );
  color: #2a2415;
}

/* textos */
body.light .footer-bloco p {
  color: rgba(42, 36, 21, 0.7);
}

/* links */
body.light .footer-bloco a:hover {
  color: #000;
}

/* ícones */
body.light .icon svg {
  fill: #8edfdf;
  opacity: 0.9;
}

/* hover ícones no light */
body.light .footer-bloco p:hover .icon svg {
  fill: #3d7777;
}
body.light .footer-bloco a[href^="mailto"] {
  animation: none;

  background: linear-gradient(90deg, #8edfdf, #3d7777, #8edfdf);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* copyright */
body.light .footer-copy {
  border-top: 1px solid rgba(42, 36, 21, 0.15);
  color: rgba(42, 36, 21, 0.6);
}
/* MENU MOBILE */
body.light .links {
   background: #8edfdf;
}

body.light .overlay {
  background: rgba(0,0,0,0.25);
}

/* SCROLL */
body.light ::-webkit-scrollbar-thumb {
  background: #b7aa6a;
}

/* MARCA D'ÁGUA */
body.light::before {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.05;
}