:root {
  --rosa-claro: #fddde6;
  --coral: #f28c82;
  --verde-claro: #cde4e1;
  --bege: #f8f5f0;
  --amarelo-claro: #f4e3b2;
  --rosa-vivo: #f8a3c5;
  --cinza-fundo: #f3f1ef;
  --cinza-texto: #2c2c2c;
  --sombra-card: rgba(242, 140, 130, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: var(--cinza-fundo) url('images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--cinza-texto);
  line-height: 1.5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(242, 140, 130, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 50%;
}

.logo span {
  font-weight: bold;
  color: var(--coral);
  font-size: 1.2rem;
}

.menu-toggle {
  font-size: 1.8rem;
  color: var(--coral);
  cursor: pointer;
  user-select: none;
  display: none;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.menu a:hover,
.menu a:focus {
  background-color: var(--rosa-vivo);
  color: #fff;
}

.menu a.active {
  background-color: var(--coral);
  color: #fff;
}

/* Versão mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(242, 140, 130, 0.2);
  }

  .menu.open {
    display: flex;
  }
}

header {
  background: rgba(255 255 255 / 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0 0 0 / 0.1);
  transition: background 0.3s ease;
}
header:hover {
  background: rgba(255 255 255 / 1);
  box-shadow: 0 3px 20px rgba(242 140 130 / 0.25);
}

header img {
  height: 90px;
  transition: transform 0.3s ease;
}
header img:hover {
  transform: scale(1.05);
}

nav a {
  color: var(--coral);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
nav a:hover,
nav a:focus {
  color: #fff;
  background-color: var(--rosa-vivo);
  outline: none;
}

.hero {
  text-align: center;
  padding: 5rem 2rem 6rem;
  background: linear-gradient(
      to bottom,
      rgba(255 255 255 / 0.85),
      rgba(248 163 197 / 0.15)
    ),
    var(--cinza-fundo) url('/images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--cinza-texto);
  box-shadow: inset 0 -60px 60px -40px var(--rosa-vivo);
  border-radius: 0 0 60px 60px;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--rosa-vivo);
  text-shadow: 1px 1px 6px rgba(248, 163, 197, 0.5);
}
.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #444;
  font-weight: 500;
}
.hero a.button {
  padding: 0.85rem 2.5rem;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 8px 15px rgba(242, 140, 130, 0.4);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.hero a.button:hover,
.hero a.button:focus {
  background: var(--rosa-vivo);
  box-shadow: 0 12px 25px rgba(248, 163, 197, 0.6);
  outline: none;
}

.services {
  padding: 3rem 1rem 5rem;
  background: rgba(255 255 255 / 0.95);
  color: var(--cinza-texto);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(242, 140, 130, 0.2);
}
.services h2 {
  text-align: center;
  color: var(--coral);
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 2px rgba(242, 140, 130, 0.2);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 28px var(--sombra-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}
.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px var(--sombra-card);
}
.card img {
  height: 80px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 2px rgba(242, 140, 130, 0.3));
}
.card h3 {
  margin-bottom: 0.75rem;
  color: var(--rosa-vivo);
  font-weight: 700;
  font-size: 1.4rem;
}
.card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
  font-weight: 500;
}

footer {
  background: #e9e5df;
  text-align: center;
  padding: 2rem;
  color: #555;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 200;
  transition: background 0.3s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1ebe57;
  outline: none;
}

/* Responsividade */
@media (max-width: 640px) {
  header {
    flex-direction: column;
    gap: 0.5rem;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  nav a {
    margin: 0;
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 1rem 3rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero a.button {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }
  .card img {
    height: 65px;
    margin-bottom: 1rem;
  }
  .card h3 {
    font-size: 1.2rem;
  }
  .card p {
    font-size: 0.95rem;
  }

  .services h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .services {
    padding: 2rem 1rem 2.5rem;
  }

  header img {
    height: 75px;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .about {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
    border-radius: 20px;
  }

  .about h1,
  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}


.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #00796b; /* azul petróleo */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #005f56;
}

.about {
  background: rgba(255, 255, 255, 0.92);
  padding: 4rem 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(242, 140, 130, 0.15);
  max-width: 900px;
  margin: 3rem auto;
  line-height: 1.8;
}

.about section {
  margin-bottom: 3rem;
}

.about h1,
.about h2 {
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(242, 140, 130, 0.2);
}

.about p {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about strong {
  color: var(--rosa-vivo);
  font-weight: 600;
}

.contact {
  background: rgba(255, 255, 255, 0.92);
  padding: 4rem 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(242, 140, 130, 0.15);
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  line-height: 1.8;
}

.contact-wrapper h1 {
  font-size: 2.8rem;
  color: var(--rosa-vivo);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(248, 163, 197, 0.25);
}

.contact-wrapper p {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}

.contact-info {
  margin-bottom: 4rem;
  text-align: left;
  background-color: var(--bege);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(242, 140, 130, 0.1);
}

.contact-info h2 {
  color: var(--coral);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-info li {
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: var(--rosa-vivo);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(242, 140, 130, 0.1);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h2 {
  text-align: center;
  color: var(--coral);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--cinza-texto);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  outline: none;
}

.contact-form button {
  margin-top: 2rem;
  padding: 0.85rem;
  background-color: var(--coral);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 8px 15px rgba(242, 140, 130, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--rosa-vivo);
  box-shadow: 0 10px 25px rgba(248, 163, 197, 0.4);
}

.atendimentos-principal .intro {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  max-width: 100%;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(255,255,255,0.8);
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  color: #333;
}

.prev { left: 10px; }
.next { right: 10px; }

.cards-servicos .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 250px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-container {
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  max-height: 400px; /* ajuste conforme necessário */
  object-fit: cover;
  border-radius: 10px;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Footer */
.footer {
  background-color: #823c33;
  color: white;
  padding: 3rem 0 1rem;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 150px;
}

.logo-footer {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #f9dcd2;
}

.social a {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: #fce1d5;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #f9dcd2;
}
