@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --rosa-claro: #ff8080;
  --rosa-escuro: #ff4d4d;
  --bege-claro: #f8f3f2;
  --preto: #3e2f2f;
  --verde-whatsapp: #25D366;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--rosa-claro);
  color: #0b0b0b;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* Bloco central */
.box-branco {
  background-color: var(--bege-claro);
  border-radius: 2rem;
  padding: 3rem;
  width: 100%;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  animation: subir 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Container texto + imagem */
.texto-e-foto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}

.perfil-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #dab031;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.perfil-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texto-apresentacao h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #0b0b0b;
}

.subtexto {
  font-size: 1.2rem;
  color: #d52d44;
  margin-bottom: 2rem;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background-color: var(--rosa-escuro);
  color: var(--bege-claro);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  background-color: #0b0b0b;
  transform: scale(1.05);
}

.contato-discreto {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.contato-discreto p {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.contato-discreto img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.contato-discreto a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.contato-discreto a:hover {
  color: #dab031;
}

@keyframes subir {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CARDS DE SERVIÇOS ===== */
.secao-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.card-servico {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 240px;
  margin: 1rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-servico h3 {
  font-size: 1.2rem;
  color: var(--preto);
  margin-bottom: 0.5rem;
}

.card-servico p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.card-servico .btn-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--verde-whatsapp);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-servico .btn-whatsapp:hover {
  background-color: #1ebe5b;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .box-branco {
    padding: 2rem 1.5rem;
  }

  .texto-e-foto {
    flex-direction: column;
    gap: 1.5rem;
  }

  .texto-apresentacao h1 {
    font-size: 2.2rem;
  }

  .subtexto {
    font-size: 1.1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contato-discreto p {
    flex-direction: column;
    gap: 0.5rem;
  }

  .secao-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-servico {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .texto-apresentacao h1 {
    font-size: 1.8rem;
  }

  .subtexto {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }

  .perfil-foto {
    width: 100px;
    height: 100px;
  }

  .box-branco {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}
