:root {
  /* cores */
  --bg: #000000;
  --text: #ffffff;
  --muted: #c8c8c8;
  --accent: #ff8a00;
  --accent-strong: #ff8c00;
  --success-1: #00ca4e;
  --success-2: #009238;
  --success-3: #005c23;
  --card-bg: #101010;
  --border: #393939;
  --soft-border: #5d5d5d;
  --ceo-badge-bg: rgba(255, 255, 255, 0.03);

  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-accent: 0 0 25px rgba(255, 140, 0, 0.6);

  --font-base: "Poppins", sans-serif;
  --max-width: 1100px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-base);
}

body,
html {
  height: 100%;
  background-color: var(--bg);
}

h1 {
  color: var(--text);
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
}

p {
  color: var(--muted);
  width: 250px;
}

span {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 20rem;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .hero img {
    width: 15rem;
  }
}

@media (max-width: 480px) {
  .hero img {
    width: 10rem;
    top: 30px;
    left: 30px;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.track {
  display: flex;
  align-items: center;
}

.track img {
  width: 1200px;
  height: auto;
  display: block;
}

#track2 img {
  width: 1300px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5rem 0;
}

.cta p {
  font-size: 1.3rem;
  color: var(--text);
  width: 500px;
}

@media (max-width: 900px) {
  .cta p {
    font-size: 1.1rem;
    width: 400px;
  }
}

@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cta p {
    font-size: 1.05rem;
    line-height: 1.3;
    width: 100%;
  }
}


.atendimento {
  margin: 20px 0;
  height: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.atendimento span {
  color: var(--muted);
}

.atendimento svg {
  width: 20px;
}


.button-cta2 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  padding: 15px 25px;
  background: linear-gradient(
    to right,
    var(--success-1),
    var(--success-2),
    var(--success-3)
  );
  border: none;
  box-shadow: 0px 0px 5px var(--success-1);
  transition: all 0.3s;
}

.button-cta2 svg {
  width: 40px;
  border-radius: 999px;
}

.button-cta2 span {
  color: var(--text);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
}

.button-cta2:hover {
  box-shadow: 0px 0px 15px var(--success-1);
  transform: scale(1.1);
}

.button {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 10px;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--black-700);
  border-radius: var(--border_radius);
  transition: all var(--transtion);
  z-index: 0;
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--success-1);
  background-image: radial-gradient(at 51% 89%, #83fab1 0px, transparent 50%),
    radial-gradient(at 100% 100%, #63f099 0px, transparent 50%),
    radial-gradient(at 22% 91%, #46ee86 0px, transparent 50%);
  background-position: top;
  box-shadow: 0px 0px 15px var(--success-1);
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.button:is(:hover, :focus-visible) {
  --active: 1;
}
.button:active {
  transform: scale(1);
}

.button .dots_border {
  --size_border: calc(100% + 3px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;
  border-radius: var(--border_radius);
  z-index: -10;
}

.button .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform-origin: left;
  width: 100%;
  height: 2rem;
  background-color: white;
  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.button .sparkle {
  position: relative;
  z-index: 10;
  width: 1.75rem;
}

.button .sparkle .path {
  fill: currentColor;
  stroke: currentColor;
  transform-origin: center;
  color: hsl(0, 0%, 100%);
}

.button:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}
.button .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}
.button .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }
  17% {
    transform: scale(var(--scale_path_1, 1));
  }
  49% {
    transform: scale(var(--scale_path_2, 1));
  }
  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.button .text_button {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;
  font-size: 1rem;
  color: transparent;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.services h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  text-transform: uppercase;
}

.card {
  width: 100%;
  height: 380px;
  background-color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  border: 2px solid var(--border);
  gap: 2rem;
}

.container-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 2rem;
}

.container-text h2 {
  text-transform: uppercase;
  color: var(--accent);
  font-size: 2.5rem;
  margin: 0;
  line-height: 3rem;
  font-weight: 700;
}

.container-text p {
  width: 90%;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #ddd;
}

.card-image {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .services h1 {
    font-size: 2rem;
  }

  .card {
    padding-top: 2rem;
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .container-text {
    width: 100%;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
  }

  .container-text h2 {
    line-height: 2rem;
    font-size: 1.8rem;
  }

  .card-image {
    width: 100%;
    height: 250px;
  }

  .card-image img {
    border-radius: 0 0 20px 20px;
  }
}

.services-performed {
  text-align: center;
  margin: 5rem 0 3rem 0;
}

.services-performed h1 {
  color: var(--accent);
  line-height: 3rem;
}

@media (max-width: 900px) {
  .services-performed h1 {
    font-size: 2.5rem;
  }
}

.portfolio {
  margin: 5rem 0;
}

.portfolio > .portfolio-text,
.portfolio > .video-wrapper {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio h3 {
  text-transform: uppercase;
  font-size: 60px;
  color: var(--text);
  line-height: 4rem;
}

.gifs-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gifs-portfolio a {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gifs-portfolio a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.gifs-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gifs-portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

    h3 {
      width: 100%;
      font-size: 2.5rem;
      line-height: 3rem;
    }

    p {
      width: 100%;
    }
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-reviews {
  display: flex;
  flex-direction: column;
  gap: 30px;

  h1 {
    margin: 1rem 0;
  }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-review {
  position: relative;
  width: 100%;
  height: 600px;
}

.video-review video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow-accent);
  transition: 0.25s ease;
}

.custom-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .reviews {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 900px) {
  .card-reviews {
    h1 {
      font-size: 2rem;
    }
  }
}

.stats {
  background: var(--bg);
  color: #ddd;
  padding: 48px 20px;
  text-align: center;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.stats__title {
  font-size: 3rem;
  margin: 0 0 28px;
  font-weight: 400;
  color: #cfcfcf;
}

.stats__title strong {
  color: #fff;
  font-weight: 800;
}

.stats__grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: end;
  flex-wrap: wrap;
}

.stat {
  min-width: 160px;
}

.stat__number {
  font-size: 110px;
  line-height: 1;
  color: var(--accent-strong);
  font-weight: 800;
  margin: 0;
  letter-spacing: -2px;
}

.stat__label {
  color: #cfd6db;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats {
    padding: 48px 1rem;
  }

  .stats__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .stats__grid {
    gap: 40px;
  }

  .stat {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }

  .stat__number {
    font-size: 72px;
  }

  .stat__label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .stats__title {
    font-size: 2rem;
  }

  .stat__number {
    font-size: 3rem;
  }
}

.cta-2 {
  width: 100%;
  margin: 50px auto;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #161616 40%,
    #161616 75%,
    #0a0a0a 100%
  );
  border-radius: 8px;
  border: 2px solid var(--soft-border);
  z-index: 1;
}

.tools {
  display: flex;
  align-items: center;
  padding: 9px;
}

.circle {
  padding: 0 4px;
}

.box {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 1px;
  border-radius: 50%;
}

.red {
  background-color: #ff605c;
}

.yellow {
  background-color: #ffbd44;
}

.green {
  background-color: var(--success-1);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.card-content h4 {
  width: 600px;
  margin-bottom: 40px;
  text-shadow: 0px 0px 5px #000;
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #cfcfcf;
  font-size: 30px;
}

.card-content h4 span {
  font-weight: bold;
  color: #fff;
}

.card-content p {
  width: 100%;
}

@media (max-width: 768px) {
  .card-content {
    h4 {
      width: 100%;
      font-size: 1.5rem;
    }

    p {
      font-size: 0.8rem;
    }
  }
}

.ceo-card {
  margin-top: 10rem;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.giro {
  position: absolute;
  top: 30%;
  left: 39%;
  width: 120px;
  height: 120px;
  animation: girar 5s linear infinite;
  transform-origin: center;
  z-index: 1;
}

.giro-foto {
  width: 100%;
}

.logo-centro {
  position: absolute;
  top: calc(30% + 60px);
  left: calc(39% + 60px);
  width: 40px;
  height: auto;
  z-index: 2;
  transform: translate(-50%, -50%);
}

@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}

.ceo-foto {
  width: 50%;
  object-fit: cover;
}

.ceo-card-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.ceo-card-content span {
  width: 60px;
  text-align: center;
  display: inline-block;
  background: var(--ceo-badge-bg);
  color: #5d5d5d;
  border-radius: 999px;
  padding: 7px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ceo-card-content h5 {
  font-size: 55px;
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 0.95;
}

.ceo-card-content h6 {
  width: 100%;
  margin: 0;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ceo-card-content p {
  font-size: 1rem;
  width: 100%;
}

.ceo-card-content p strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .giro {
    left: 38%;
  }

  .logo-centro {
    left: calc(38% + 60px);
  }
}

@media (max-width: 900px) {
  .giro {
    left: 35%;
  }

  .logo-centro {
    left: calc(35% + 60px);
  }

  .ceo-card-content {
    h5 {
      font-size: 2rem;
    }

    h6 {
      font-size: 1rem;
    }

    p {
      font-size: 0.8rem;
    }
  }
}

@media (max-width: 768px) {
  .ceo-card {
    flex-direction: column;
  }

  .ceo-foto {
    width: 70%;
  }

  .ceo-card-content {
    width: 100%;

    p {
      font-size: 1rem;
    }
  }

  .giro {
    top: 55%;
    left: 75%;
    width: 100px;
    height: 100px;
  }

  .logo-centro {
    top: calc(55% + 50px);
    left: calc(75% + 50px);
    width: 30px;
  }
}

@media (max-width: 600px) {
  .giro {
    top: 40%;
    left: 75%;
    width: 100px;
    height: 100px;
  }

  .logo-centro {
    top: calc(40% + 50px);
    left: calc(75% + 50px);
    width: 30px;
  }
}

@media (max-width: 450px) {
  .giro {
    top: 30%;
    left: 75%;
    width: 100px;
    height: 100px;
  }

  .logo-centro {
    top: calc(30% + 50px);
    left: calc(75% + 50px);
    width: 30px;
  }
}

ul {
  width: 50px;
  list-style: none;
  padding: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-content {
  position: relative;
}

.icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #242424;
  color: var(--muted);
  transition: all 0.3s ease-in-out;
}

.icon-content a:hover {
  color: white;
  box-shadow: 3px 2px 45px rgba(0, 0, 0, 0.12);
}

.icon-content a svg {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
}

.icon-content a .filled {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.icon-content a[data-social="instagram"] .filled {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

.icon-content a:hover .filled {
  height: 100%;
}

footer {
  padding: 80px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer img {
  width: 40px;
}

footer span {
  color: var(--muted);
}

.follow-us {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.follow-us p {
  margin: 0;
  text-transform: uppercase;
}

.follow-us ul {
  width: 20px;
}

.follow-us .icon-content a {
  width: 20px;
  height: 20px;
}

.follow-us .icon-content a svg {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
}

.hidden {
  display: none;
}

@media (max-width: 1000px) {
  footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
