/* ================================
   PALETA PRINCIPAL (Tema C)
   Azul + Lilás moderno e suave
   ================================ */

:root {
  --azul-claro: #9ab3ff;
  --azul: #6d8dff;
  --lilas: #c7b8ff;
  --roxo: #b09cff;
  --texto: #333;
  --fundo-suave: #f7f9ff;
  --branco: #fff;
}

/* ================================
   RESET
================================ */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background: var(--fundo-suave);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================================
   FUNDO COM ONDAS SVG
================================ */

.background-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* ================================
   HEADER / MENU
================================ */

header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0;
}
nav a {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
}

nav a:hover {
  color: #0077b6;           /* Azul do mar */
  transform: translateY(-2px);
}


nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  color: var(--azul);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: var(--roxo);
}

/* ================================
   SEÇÕES
================================ */

section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  color: var(--azul);
  margin-bottom: 25px;
  font-size: 2rem;
}

/* ================================
   SERVIÇOS — CARDS
================================ */

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

.card {
  background: var(--branco);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

/* ================================
   GALERIA
================================ */

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

.galeria-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* ================================
   ⭐⭐⭐⭐⭐ DEPOIMENTOS (CARROSSEL + FADE)
================================ */

.testimonials-section {
  background: linear-gradient(135deg, var(--azul-claro), var(--lilas));
  padding: 70px 20px;
  border-radius: 0 0 40px 40px;
  margin-top: 40px;
  color: var(--texto);
}

#testimonials-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  width: 100%;
  padding: 25px;
  background: var(--branco);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial .photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--azul);
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 20px;
}

.author {
  font-weight: bold;
  margin-top: 5px;
}

.date {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ================================
   BOTÕES
================================ */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.8;
}

.depo-btn {
  margin: 20px auto;
  display: block;
  width: fit-content;
}

/* ================================
   CONTATO
================================ */

#contato p {
  margin-bottom: 15px;
}

/* ================================
   FOOTER
================================ */

footer {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-top: 3px solid var(--azul);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  margin: 5px 0;
}
/* ===== BANNER ===== */
#banner {
  width: 100%;
  overflow: hidden; /* evita cortes estranhos */
  margin-top: 20px;
}

#banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 380px; /* controla a altura para não ficar gigante */
}
/* ===================== LOCALIZAÇÃO / MAPA ===================== */

#localizacao {
  padding: 40px 20px;
  text-align: center;
}

#localizacao h2 {
  color: #004c73;
  font-size: 2rem;
  margin-bottom: 20px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
