

@keyframes floatImg {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #1a1a1a 100%);
  z-index: 2;
  pointer-events: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #ffffff 0%, #f6e6c2 20%, #1a1a1a 100%);
  color: #000;
  line-height: 1.6;}

.hero-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  border-radius: 16px;
  color: #fff;
  width: 95%;
  max-width: 1000px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(45deg, #d4af37, #f0d36d);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #c89d2f;
}

.section-dark {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4rem 2rem;
  border-radius: 12px;
}



.text-content h1 {
  color: #d4af37;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
}

.text-content p {
  font-size: 1.25rem;
  color: #111111;
  margin-bottom: 1.5rem;
  line-height: 1.8;}

.cta-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 3px solid #d4af37;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  text-align: center;
  max-width: 1000px;
}

.cta-box img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-bottom: 4px solid #c89d2f;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: floatImg 4s ease-in-out infinite;
}

.cta-box p {
  color: #ffffff;}

.sobre-mim {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.sobre-mim h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sobre-mim p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ffffff;}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #ebc90d;
  padding-bottom: 2rem;}

footer a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}
/* Removed duplicate and conflicting .cta-box img max-width for better responsiveness */
  
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
    .hero-content {
    bottom: 40%; /* Subimos bastante o bloco no celular */
    padding: 1.2rem 1.5rem;
    width: 90%;
  }
  .cta-button {
    width: 100%;
    font-size: 1rem;
  }
.container {
  padding: 2rem 1rem;
}
  .cta-box img {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .hero-content {
    bottom: 40%; /* Subimos bastante o bloco no celular */
    padding: 1.2rem 1.5rem;
    width: 90%;
  }

  .hero-content h1 {
    font-size: 1.4rem;  /* menor para caber certinho no espaço */
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    width: 100%;
  }

  .botoes-coluna {
    gap: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    bottom: 40%; /* Subimos bastante o bloco no celular */
    padding: 1.2rem 1.5rem;
    width: 90%;
  }

  .hero-content h1 {
    font-size: 1.4rem;  /* menor para caber certinho no espaço */
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    width: 100%;
  }

  .botoes-coluna {
    gap: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 400px) {
  .cta-box img {
    max-width: 100%;
  }

  .hero-content {
    bottom: 40%;
    padding: 1rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 360px) {
  .cta-box img {
    max-width: 100%;
  }

  .hero-content {
    bottom: 40%;
    padding: 1rem 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.pulsando {
  animation: pulse 2s infinite;
}