:root {
  --primary-gold: #bfa15c;
  --secondary-white: #ffffff;
  --text-dark: #212121;
  --whatsapp-green: #25d366;
  --light-gray-bg: #f9f9f9;

  --font-title: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  --font-text: "Lato", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--text-dark);
  background-color: var(--secondary-white);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-gold);
  display: inline-block;
}

section {
  padding: 4rem 1rem;
  text-align: center;
}

section:nth-child(even) {
  background-color: var(--light-gray-bg);
}

.cta-button {
  display: inline-block;
  background-color: var(--whatsapp-green);
  color: var(--secondary-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size:larger;
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("fotos/WhatsApp Image 2025-08-31 at 11.47.21.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--secondary-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Hero content 
    colocar evenly
*/
.hero-content {
  max-width: 600px;
  display: flex;
  gap: 10rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  color: var(--secondary-white);
  margin-bottom: -5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 4rem;
  font-family: var(--font-body);
  line-height: 1.8;
  font-weight: bold;
}

/* Social Proof */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--secondary-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-gold);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card span {
  font-weight: 700;
  color: var(--primary-gold);
}

/* Services */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  background: var(--secondary-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--primary-gold);
}

.service-card p {
  padding: 0 1rem 1rem;
}

/* How it Works */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* FAQ */
.faq-container {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1rem 1.5rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 100px; /* Adjust as needed */
}

/* Final CTA */
#final-cta {
  background-color: var(--primary-gold);
  color: var(--secondary-white);
}

#final-cta h2 {
  color: var(--secondary-white);
  border-bottom-color: var(--secondary-white);
}

#final-cta p {
  margin: 1rem 0 2rem;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--secondary-white);
  text-align: center;
  padding: 2rem 1rem;
}

.footer-content .logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Estilo para a seção de créditos do desenvolvedor */
.footer-credit {
  margin-top: 2rem; /* Adiciona um espaço para separar do conteúdo principal */
  font-size: 0.9rem; /* Diminui um pouco o texto para dar hierarquia */
  color: #ccc; /* Um tom de branco mais sutil */
}

.footer-credit p {
  margin: 0.25rem 0; /* Controla o espaçamento entre as linhas, se houver duas */
}

.footer-credit a {
  color: var(--primary-gold); /* Usa a mesma cor do logo para o link, mantendo a consistência */
  text-decoration: none; /* Remove o sublinhado padrão */
  font-weight: 600; /* Dá um leve destaque ao seu nome/marca */
}

.footer-credit a:hover {
  text-decoration: underline; /* Adiciona o sublinhado quando o mouse passa por cima */
}

/* Section CTA */
.section-cta {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: var(--secondary-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
}

/* Floating WhatsApp Button */
.floating-wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--whatsapp-green);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: floating-wpp 2s infinite ease-in-out;
}

.floating-wpp:hover {
  transform: scale(2);
}

/* Desktop Styles */
@media (min-width: 768px) {
  section {
    padding: 5rem 2rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .testimonials {
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto 0;
  }

  .services-grid {
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: row;
    justify-content: center;
    max-width: 1000px;
    margin: 2rem auto 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }

  
}

@keyframes floating-wpp {
    0% {
        transform: scale(1);
    }
    50% {
         transform: scale(1.1);
    }
    100% {
        transform: translateY(1.2);
    }
}