@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis */
:root {
  --text-color: white;
  --bg-url: url(../assets/bg-mobile-light.jpg);
  --stroke-color: white;
  --surface-color: rgb(117, 0, 0);
  --surface-color-hover: rgba(255, 255, 255, 0.396);
  --highlight-color: rgb(117, 0, 0);
  --switch-bg-url: url(../assets/sun.svg);
}

.light {
  --text-color: white;
  --bg-url: url(../assets/bg-mobile-dark.jpg);
  --stroke-color: white;
  --surface-color: black;
  --highlight-color: black;
  --switch-bg-url: url(../assets/moon-stars.svg);
}

/* Base */
body {
  background: var(--bg-url) no-repeat top center/cover;
  height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--text-color);
}

#container {
  width: 100%;
  max-width: 1200px;
  margin: 56px auto 0px;
  padding: 0 24px;
}

/* Profile */
#profile {
  text-align: center;
  padding: 24px;
}

#profile img {
  width: 112px;
}

/* Switch */
#switch {
  position: relative;
  width: 64px;
  margin: 4px auto;
}

#switch button {
  width: 32px;
  height: 32px;
  background: white var(--switch-bg-url) no-repeat center;
  border: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  animation: slide-back 0.2s;
}

.light #switch button {
  animation: slide-in 0.2s forwards;
}

#switch button:hover {
  outline: 8px solid var(--highlight-color);
}

#switch span {
  display: block;
  width: 64px;
  height: 24px;
  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 9999px;
}

/* Serviços */
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.services .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 500;
  transition: background 0.2s;
  text-align: center;
}

/* Avaliações */
.reviews h2 {
  text-align: center;
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.review {
  display: none;
  color: white;
}

.review.active {
  display: block;
  text-align: center;
  color: white;
}

/* Links */
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}

ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

ul li a:hover {
  background: var(--surface-color-hover);
  border: 1.5px solid var(--text-color);
}

/* Social Links */
#social-links {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  font-size: 24px;
}

#social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.2s;
  border-radius: 50%;
}

#social-links a:hover {
  background: var(--highlight-color);
}

/* Rodapé */
footer {
  padding: 24px 0;
  text-align: center;
  font-size: 15px;
}

/* Video + Sobre Nós lado a lado */
.about-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 20px;
}

.video-container {
  flex: 1 1 500px;
  max-width: 600px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: solid white 3px;
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about {
  flex: 1 1 400px;
  max-width: 600px;
}

.about h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about .highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight {
  background: var(--surface-color);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  flex: 1 1 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Botão WhatsApp */
.whatsapp-btn {
  background: rgb(117, 0, 0);
  color: white !important;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 1.5s infinite;
  border: 1px solid var(--stroke-color);
  border-radius: 8px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.7);
  background: #1ebe5b;
}

/* Efeito pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/* Responsividade */
@media (min-width: 700px) {
  :root {
    --bg-url: url(../assets/bg-desktop-light.png);
  }
  .light {
    --bg-url: url(../assets/bg-desktop.png);
  }
}
/* Animações do botão switch */
@keyframes slide-in {
  from {
    left: 0;
  }
  to {
    left: 50%;
  }
}
@keyframes slide-back {
  from {
    left: 50%;
  }
  to {
    left: 0;
  }
}/*# sourceMappingURL=style.css.map */