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

:root {
  --black: #0a0a0a;
  --white: #f4f4f4;
  --cyan: #00AEEF;
  --magenta: #EC008C;
  --yellow: #FFF200;
  --key: #2b2b2b;
  --accent: var(--cyan);
  --accent2: var(--magenta);

  --gray: #141414;
  --gray-mid: #222;
  --text-muted: #777;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(0, 174, 239, 0.04) 0px, transparent 1px, transparent 80px, rgba(0, 174, 239, 0.04) 81px);
  pointer-events: none;
}

.logo-wrap {
  width: 120px;
  height: 120px;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: fadeDown .8s ease both;
  overflow: hidden;
}

.logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: .05em;
  line-height: .95;
  color: var(--white);
  animation: fadeDown .9s ease .1s both;
}

.hero h1 span {
  color: var(--magenta);
}

.since {
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: .75rem;
  margin-bottom: 2.5rem;
  animation: fadeDown .9s ease .2s both;
}

.hero-desc {
  font-size: 1.1rem;
  color: #bbb;
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: fadeDown .9s ease .3s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: fadeDown .9s ease .4s both;
  box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 174, 239, 0.4);
}

.cta-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* SERVIÇOS */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .78rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: .04em;
  margin-bottom: 3rem;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-link {
  text-decoration: none;
  height: 100%;
}

.service-card {
  background: var(--gray);
  height: 100%;
  border: 1px solid #1e1e1e;
  border-top: none;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: transform .25s;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00AEEF 0%, #EC008C 33%, #FFF200 66%, #2b2b2b 100%);
  border-radius: 4px 4px 0 0;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  color: var(--white);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid #181818;
  margin: 0;
}

/* CTA SECTION */
.cta-section {
  background: var(--gray);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-section .cta-btn {
  animation: none;
}

p.phone-note {
  margin-top: 1.25rem;
  color: white;
  letter-spacing: .05em;
}

/* FOOTER */
footer {
  background: var(--black);
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
  color: white;
  letter-spacing: .06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

/* CARROSSEL */
.carousel-section {
  padding: 5rem 0;
  background: var(--black);
}

.carousel-header {
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

/* Fade nas bordas */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  margin: -12px 0;
}

.carousel-wrap::before,
.carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.carousel-track {
  display: flex;
  gap: 12px;
  will-change: transform;
  /* animação injetada via JS com o tamanho correto */
}

.carousel-slide {
  flex: 0 0 500px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray-mid);
  border: 1px solid #1e1e1e;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .85rem;
  letter-spacing: .06em;
  text-align: center;
  padding: 1rem;
  position: relative;
  user-select: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel-placeholder-icon {
  font-size: 2.5rem;
  opacity: .3;
}

.carousel-slide {
  cursor: pointer;
  text-decoration: none;
}

.carousel-slide:hover {
  box-shadow: 0 0px 12px rgba(0, 174, 239, 0.5);
}

.carousel-slide:hover .carousel-caption {
  background: rgba(0, 0, 0, .85);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .85rem;
  background: rgba(0, 0, 0, .65);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: background .25s;
}

.carousel-caption-title {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.3;
}

.carousel-caption-cta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cyan);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}

.carousel-slide:hover .carousel-caption-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Hint de swipe no mobile */
.carousel-hint {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .75rem;
  letter-spacing: .1em;
  color: #444;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .carousel-slide {
    flex: 0 0 75vw;
    aspect-ratio: 3 / 4;
  }
}

/* INSTAGRAM */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  color: #aaa;
  text-decoration: none;
  font-size: .88rem;
  letter-spacing: .08em;
  border: 1px solid #333;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  transition: color .2s, border-color .2s;
  animation: fadeDown .9s ease .5s both;
}

.instagram-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.instagram-btn:hover {
  color: var(--white);
  border-color: var(--magenta);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
  color: white;
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .06em;
  transition: color .2s;
}

.footer-instagram svg {
  width: 14px;
  height: 14px;
}

.footer-instagram:hover {
  color: #aaa;
}

.carousel-instagram {
  text-align: center;
  margin-top: 1.5rem;
}

.carousel-instagram .instagram-btn {
  animation: none;
  margin-top: 0;
}

/* REGION */
.hero-region {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .08em;
  color: white;
  margin-bottom: 2rem;
  animation: fadeDown .9s ease .35s both;
}

.hero-region svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
  flex-shrink: 0;
}

.footer-region {
  font-size: .75rem;
  color: white;
  letter-spacing: .05em;
  margin-top: .25rem;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

  .logo-wrap {
    width: 88px;
    height: 88px;
  }

  .logo-wrap img {
    width: 54px;
    height: 54px;
  }

  .cta-section::after {
    font-size: 10rem;
  }
}