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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
header {
  background-color: #ffe0e6;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  color: #d6336c;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #d6336c;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #a61e4d;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #d6336c;
  cursor: pointer;
}

/* Hero */
.hero {
  background-image: url('img/fundo.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  /* background-color: rgba(77, 22, 41, 0.5); */
  padding: 40px 30px;
  border-radius: 15px;
  /* box-shadow: 0 4px 20px rgba(77, 22, 41, 0.5); */
  max-width: 600px;
  margin: auto;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}
.btn {
  background-color: #d6336c;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a61e4d;
}

/* About */
.about {
  padding: 80px 0;
  background-color: #fff5f7;
  text-align: center;
}

.about h2 {
  color: #d6336c;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: auto;
}

/* Services */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  color: #d6336c;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff5f7;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card h3 {
  color: #d6336c;
  margin-bottom: 10px;
}

/* Contact */
.contact {
  padding: 80px 0;
  background-color: #ffe0e6;
  text-align: center;
}

.contact h2 {
  color: #d6336c;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #d6336c;
  color: white;
  text-align: center;
  padding: 15px 0;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background-color: #ffe0e6;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }
}
.whatsapp-float {
  text-decoration: none; /* Remove sublinhado */
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform 0.3s;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* maps */
.address {
  padding: 80px 0;
  background-color: #fff5f7;
  text-align: center;
}

.address h2 {
  color: #d6336c;
  margin-bottom: 15px;
}

.address p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
}

.map-container {
  max-width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* botao copiar endereco */
.address-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.address-copy p {
  margin: 0;
}

.address-copy button {
  background-color: #d6336c;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-copy button:hover {
  background-color: #a61e4d;
}


/* Botões Flutuantes */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  background-color: #25D366; /* WhatsApp */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  font-size: 24px;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons .instagram-button {
  background-color: #E1306C; /* Cor do Instagram */
}
