*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-viewport layout */
html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden; /* garante sem scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #11212e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Fundo ampliado */
body::after {
  content: "";
  position: fixed;
  top: 100%;
  left: 100%;
  width: 500vw;       /* expande além da viewport */
  height: 500vh;      /* expande além da viewport */
  transform: translate(-50%, -50%); /* centraliza */
  background-image: url('./assets/Grafismo Light.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* mantém proporção do svg */
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Triangles decoration */
.triangles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.triangle-1 {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #e2e8f0;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.triangle-2 {
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 60px solid #cbd5e1;
  top: 20%;
  right: 20%;
  animation-delay: 3s;
}

.triangle-3 {
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 45px solid #94a3b8;
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

.triangle-4 {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 55px solid #e2e8f0;
  bottom: 20%;
  right: 10%;
  animation-delay: 0.5s;
}

.triangle-5 {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #cbd5e1;
  top: 60%;
  left: 70%;
  animation-delay: 1s;
}

.triangle-6 {
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 65px solid #94a3b8;
  top: 40%;
  right: 60%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateY(-20px) rotate(270deg) scale(1.05);
  }
}

/* Main content container */
.bio-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 400px;
  padding: 40px 30px;
  background: rgba(177, 199, 222);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(177, 199, 222, 0.2);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

/* Logo section */
.logo-section {
  margin-bottom: 10px;
}

.logo-image {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.company-title {
  font-size: 24px;
  font-weight: 700;
  color: #11212e;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.company-subtitle {
  font-size: 14px;
  color: #64748b;
  font-weight: 400;
  margin-bottom: 20px;
}

.tagline {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 25px;
}

/* Links list */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Links list */
.title-container {
  font-size: 24px;
  font-family: Poppins;
  color: #fff;
}

/* Link buttons */
.link-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: #b1c7de;
  border: 2px solid #b1c7de;
  border-radius: 50px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
}

.link-btn:nth-child(1) { animation-delay: 0.1s; }
.link-btn:nth-child(2) { animation-delay: 0.2s; }
.link-btn:nth-child(3) { animation-delay: 0.3s; }
.link-btn:nth-child(4) { animation-delay: 0.4s; }
.link-btn:nth-child(5) { animation-delay: 0.5s; }
.link-btn:nth-child(6) { animation-delay: 0.6s; }

.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left 0.5s ease;
}

.link-btn:hover::before {
  left: 100%;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

/* Button-specific hover colors */
.whatsapp-btn:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-color: #25d366;
}

.phone-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: #fff;
  border-color: #3b82f6;
}

.instagram-btn:hover {
  background: linear-gradient(135deg, #e4405f, #833ab4);
  color: #fff;
  border-color: #e4405f;
}

.maps-btn:hover {
  background: linear-gradient(135deg, #C69C6D, #A79076);
  color: #fff;
  border-color: #C69C6D;
}

.site-btn:hover {
  background: linear-gradient(135deg, #A78F76, #806f5f); 
  color: #fff;
  border-color: #A78F76;
}

.gmb-btn:hover {
  background: linear-gradient(135deg, #4888F4, #456eaf);
  color: #fff;
  border-color: #4888F4;
}
/* Icons */
.link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.footer-text {
  font-size: 12px;
  color: #94a3b8;
}

.footer-link {
  color: #11212e;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .bio-container {
    padding: 30px 25px;
    border-radius: 20px;
  }
  .company-title {
    font-size: 22px;
  }
  .logo-image {
    width: 100px;
  }
  .link-btn {
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .bio-container {
    padding: 25px 20px;
  }
  .link-btn {
    padding: 12px 16px;
  }
}