:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --accent: #f5c518;
  --text: #eaeaea;
  --muted: #888;
  --border: #2a2a2a;
  --radius: 10px;
  --transition: 0.3s ease;
  --font-main: 'Inter', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}

header {
  background: var(--surface);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

nav h1 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-right: auto;
}

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

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

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

.hero {
  height: 90vh;
  background: radial-gradient(circle at top, #1a1a1a, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

#btn-agendar {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

#btn-agendar:hover {
  background: #ffe75c;
  transform: scale(1.03);
}


section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent);
}

section p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.galeria-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.galeria-container::-webkit-scrollbar {
  display: none;
}

.galeria-img {
  flex: 0 0 auto;
  width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeria-img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}


#depoimentos {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
}

#depoimentos h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3rem;
}

.depoimentos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.depoimentos-wrapper {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.depoimento {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-prev,
.btn-next {
  background: linear-gradient(135deg, var(--accent), #ffd700);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.4);
  transition: all 0.35s ease;
}


footer {
  background: var(--surface);
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}

footer a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color var(--transition);
}

footer a:hover {
  color: #fff;
}


.planos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  padding: 20px;
}

.plano {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  min-height: 360px; 
  transition: transform var(--transition), box-shadow var(--transition);
}

.plano:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.15);
}

.plano h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.plano .preco {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.plano ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  flex-grow: 1; 
}

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

.btn-assinar {
  background: linear-gradient(135deg, var(--accent), #ffd700);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.4);
  margin-top: auto;
  align-self: center; 
}

.btn-assinar:hover {
  background: linear-gradient(135deg, #ffe75c, #fff176);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.6);
}


.plano.premium .preco {
  color: #ffd700;
  font-size: 1.4rem;
}

.plano.premium .btn-assinar {
  background: #ffd700;
  color: #000;
}

.plano.premium .btn-assinar:hover {
  background: #ffea70;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

.depoimentos-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
}

.depoimento {
  position: absolute;
  width: 60%;
  max-width: 600px;
  opacity: 0;
  transform: scale(0.8);
  filter: blur(4px);
  transition: all 0.8s ease;
  z-index: 1;
}

.depoimento.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 3;
}

.depoimento.prev {
  left: -30%;
  opacity: 0.6;
  transform: scale(0.85);
  filter: blur(2px);
  z-index: 2;
}

.depoimento.next {
  right: -30%;
  opacity: 0.6;
  transform: scale(0.85);
  filter: blur(2px);
  z-index: 2;
}



@media (max-width: 768px) {
  .planos-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    padding: 20px 0;
    justify-items: center;
  }

  .plano {
    max-width: 280px;
    padding: 16px;
    min-height: 320px;
  }

  .plano h3 { font-size: 1.1em; }
  .plano .preco { font-size: 1em; }
  .plano ul { font-size: .9em; line-height: 1.45; }
  .btn-assinar { font-size: .9em; padding: 8px 16px; }
}


@media (max-width: 414px) {

  header {
    padding: 10px;
    text-align: center;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav h1 {
    position: static;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent);
  }

  nav ul {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  nav ul li a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  #btn-agendar {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 20px;
  }


  #sobre p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }


  .planos-container {
    display: flex;           
    gap: 12px;
    overflow-x: auto;          
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }

  .plano {
    flex: 0 0 80%;             
    scroll-snap-align: center;  
    min-height: 280px;
    padding: 12px;
  }

  .plano h3 { font-size: 1rem; }
  .plano .preco { font-size: 0.9rem; }
  .plano ul { font-size: 0.8rem; }
  .btn-assinar { font-size: 0.8rem; padding: 6px 12px; }

 
 .depoimentos-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  overflow: hidden;
}

.depoimento {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  text-align: center;
  z-index: 0;
}

.depoimento.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  z-index: 2;
}


  .btn-prev, .btn-next {
    display: none;
  }
@media (max-width: 768px) {
  .localizacao-wrapper iframe {
    height: 400px; 
  }
}

@media (max-width: 414px) {
  .localizacao-wrapper iframe {
    height: 280px; 
  }
}

  footer {
    padding: 20px 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text);
  }

  footer a {
    display: inline-block;
    margin: 0 6px;
    font-size: 0.9rem;
  }
}

@media (max-width: 414px) {
  .depoimentos-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 20px;
  }

  .depoimento {
    flex: 0 0 90%;
    scroll-snap-align: center;
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    z-index: auto !important;
  }

  .depoimento.active,
  .depoimento.prev,
  .depoimento.next {
    all: unset;
  }
}

.carrossel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.galeria-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden; 
}
.galeria-img {
  flex: 0 0 auto;
  width: clamp(200px, 30vw, 400px); 
  height: clamp(140px, 22vw, 260px);
  object-fit: cover;
  margin-right: 20px; 
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.05);
}
