/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  height: 55px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #006d75;
}

/* HERO */
.hero {
  position: relative;
  height: 400px;
  background: url('https://images.pexels.com/photos/3845783/pexels-photo-3845783.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #006d75;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #00575e;
}

/* SEÇÕES GERAIS */
section {
  padding: 80px 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #006d75;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.05rem;
}

/* SOBRE */
.sobre p {
  text-align: center;
  margin-bottom: 15px;
}

/* SALAS - CARROSSEL */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.sala-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
}

.sala-card:hover {
  transform: translateY(-5px);
}

.sala-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sala-card h3 {
  color: #006d75;
  margin: 15px 20px 10px;
  font-size: 1.1rem;
}

.sala-card ul {
  list-style: none;
  margin: 0 20px 20px;
  padding: 0;
}

.sala-card li {
  font-size: 0.95rem;
  padding-left: 1em;
  position: relative;
  margin-bottom: 5px;
}

.sala-card li::before {
  content: "•";
  color: #006d75;
  position: absolute;
  left: 0;
}

/* BOTÕES DO CARROSSEL */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 109, 117, 0.8);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #00575e;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* BENEFÍCIOS - CARROSSEL */
.beneficios {
  text-align: center;
  padding: 80px 0;
}

.carousel-beneficios {
  position: relative;
  overflow: hidden;
}

.carousel-beneficios .carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-beneficios .carousel-track::-webkit-scrollbar {
  display: none;
}

.beneficio-card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s;
}

.beneficio-card:hover {
  transform: translateY(-4px);
}

.beneficio-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: invert(35%) sepia(60%) saturate(400%) hue-rotate(140deg);
}

.beneficio-card h3 {
  color: #006d75;
  margin-bottom: 8px;
}

.beneficio-card p {
  font-size: 0.9rem;
  color: #444;
}

/* CONTATO */
.contato {
  background: #006d75;
  color: #fff;
  padding: 80px 0;
}

.contato h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.contato .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contato-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contato-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  transition: background 0.3s;
  word-wrap: break-word;
}

.contato-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contato-item img {
  width: 36px;
  height: 36px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
}

.contato-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #fff;
}

.contato-item p,
.contato-item a {
  color: #c8f6f9;
  font-size: 0.95rem;
  text-decoration: none;
  word-break: normal;
}

.contato-item a:hover {
  text-decoration: underline;
}

/* CORREÇÃO EMAIL */
.email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

/* MAPA */
.mapa {
  flex: 1 1 400px;
  border-radius: 10px;
  overflow: hidden;
  min-width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* FOOTER */
.footer {
  background: #004f56;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
}

/* BOTÃO WHATSAPP FIXO */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .hero {
    height: 320px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .contato-grid {
    flex-direction: column;
    align-items: center;
  }

  .contato-info,
  .mapa {
    width: 100%;
  }

  .mapa iframe {
    height: 250px;
  }

  .nav a {
    margin-left: 10px;
    font-size: 0.95rem;
  }
}
/* --- Uniformização de ícones coloridos (gelinho, maca e cozinha) --- */
.beneficio-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  opacity: 0.95;
  transition: transform 0.2s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(27%) sepia(60%) saturate(400%) hue-rotate(140deg) brightness(90%) contrast(90%);
}

.beneficio-card:hover img {
  transform: scale(1.08);
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(17%) sepia(80%) saturate(400%) hue-rotate(160deg) brightness(95%) contrast(95%);
}
/* --- Ajuste de cor do texto de introdução da seção de contato --- */
.contato .intro {
  color: #ffffff; /* ou #eaf9f9 se quiser um branco mais suave */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* Evita que o topo fixo cubra o conteúdo inicial */
.hero {
  padding-top: 120px; /* aumenta o espaço visível abaixo do header */
}

/* Ajuste mais fino para telas menores */
@media (max-width: 768px) {
  .hero {
    padding-top: 140px; /* dá um respiro extra no mobile */
  }
}
/* === Bloco Redes Sociais === */
.redes-sociais {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #eee;
}

.redes-sociais h3 {
  font-size: 2rem;
  color: #006d75;
  margin-bottom: 10px;
}

.redes-sociais p {
  
  color: #006d75;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.icones-redes {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.icones-redes a img {
  width: 50px;
  height: 50px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.icones-redes a img:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}

@media (max-width: 600px) {
  .redes-sociais h3 {
    font-size: 1.6rem;
    color: #006d75;
  }
  .icones-redes a img {
    width: 45px;
    height: 45px;
  }
}
