:root {
  --red: #e30613;
  --red-dark: #a80009;
  --yellow: #ffc400;
  --green: #25d366;
  --ink: #151515;
  --muted: #666;
  --light: #f4f5f7;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: block;
  flex: 0 1 260px;
}

.brand img {
  display: block;
  width: min(100%, 250px);
  max-height: 62px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
}

.menu a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.menu a::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
  content: "";
  transition: width .25s ease;
}

.menu a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(227, 6, 19, .25);
  font-size: 14px;
  font-weight: 900;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.header-cta:hover {
  box-shadow: 0 18px 34px rgba(227, 6, 19, .34);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  background-position: center;
  background-size: cover;
  color: var(--white);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .85s ease, transform 6.5s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .6) 48%, rgba(120, 0, 8, .25) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 55%);
  content: "";
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 90px 0 120px;
}

.hero-label,
.section-copy > span,
.contact-content > div > span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding: 9px 14px;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  max-width: 850px;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-slide.active .hero-label {
  animation: slideUp .65s .15s both;
}

.hero-slide.active h1,
.hero-slide.active h2 {
  animation: slideUp .75s .28s both;
}

.hero-slide.active p {
  animation: slideUp .75s .4s both;
}

.hero-slide.active .hero-actions {
  animation: slideUp .75s .52s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  padding: 13px 24px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--ink);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  color: var(--white);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: background .25s ease, transform .25s ease;
}

.slider-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dot.active {
  width: 36px;
  background: var(--yellow);
}

.section {
  padding: 84px 0;
}

.section-copy {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-copy h2,
.about-copy h2,
.contact-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-copy p,
.about-copy > p,
.contact-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.brands-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff, #fff3f4 55%, #f1f2f4);
}

.brands-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 5px;
  border-radius: 0 0 99px 99px;
  background: var(--red);
  content: "";
  transform: translateX(-50%);
}

.brands-carousel {
  position: relative;
  overflow: hidden;
  padding: 14px 0 34px;
}

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

.brands-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff7f7, transparent);
}

.brands-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f3f2f3, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: brandsFlow 28s linear infinite;
}

.brands-carousel:hover .brands-track {
  animation-play-state: paused;
}

.brand-card {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 290px);
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, .08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .1);
  color: var(--white);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}

.brand-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88));
  content: "";
}

.brand-card:hover {
  box-shadow: 0 28px 56px rgba(227, 6, 19, .2);
  transform: translateY(-8px) scale(1.02);
}

.brand-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s ease;
}

.brand-card:hover img {
  transform: scale(1.07);
}

.brand-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #111 0%, #181818 58%, #260003 100%);
  color: var(--white);
}

.about-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 6px;
  background: var(--yellow);
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, .38),
    0 0 42px rgba(227, 6, 19, .16);
}

.about-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .12), transparent 25%, transparent 48%, rgba(0, 0, 0, .86)),
    linear-gradient(90deg, rgba(17, 17, 17, .28), transparent 12%, transparent 88%, rgba(38, 0, 3, .28));
  content: "";
  pointer-events: none;
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform .7s ease;
}

.about-image:hover .about-photo {
  transform: scale(1.05);
}

.about-image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.about-image-caption strong,
.about-image-caption span {
  display: block;
}

.about-image-caption strong {
  color: var(--yellow);
  font-size: 19px;
  margin-bottom: 5px;
}

.about-image-caption span {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.about-copy > span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding: 9px 14px;
  text-transform: uppercase;
}

.about-copy > p {
  color: rgba(255, 255, 255, .74);
  margin-bottom: 28px;
}

.about-points {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.about-points article {
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, .07);
  padding: 16px 18px;
  transition: background .25s ease, transform .25s ease;
}

.about-points article:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(7px);
}

.about-points strong,
.about-points small {
  display: block;
}

.about-points strong {
  color: var(--yellow);
  margin-bottom: 5px;
}

.about-points small {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.5;
}

.about-cta {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(227, 6, 19, .25);
}

.whatsapp-action {
  gap: 9px;
}

.whatsapp-action img {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-cta img {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-copy.reveal {
  transition-delay: .14s;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(168, 0, 9, .98), rgba(227, 6, 19, .92)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 70px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.contact-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.contact-copy > span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding: 9px 14px;
  text-transform: uppercase;
}

.contact-copy > p {
  color: rgba(255, 255, 255, .82);
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.contact-benefits span {
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(0, 0, 0, .12);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}

.contact-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 60px rgba(70, 0, 5, .3);
  color: var(--ink);
  padding: 26px;
}

.contact-data article {
  min-width: 0;
  border-radius: 10px;
  background: #f3f4f6;
  padding: 17px;
  transition: background .25s ease, transform .25s ease;
}

.contact-data article:last-of-type {
  grid-column: 1 / -1;
}

.contact-data article:hover {
  background: #fff1f2;
  transform: translateY(-4px);
}

.contact-data article > span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.contact-data strong,
.contact-data article > a {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.contact-data a:not(.btn) {
  color: var(--ink);
}

.contact-whatsapp {
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .27);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .34);
  padding: 0;
  place-items: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  background: transparent;
  padding: 0;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 44px rgba(37, 211, 102, .45);
  transform: translateY(-4px);
}

.footer {
  background: #090909;
  color: rgba(255, 255, 255, .66);
  padding: 26px 0;
  text-align: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes brandsFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: 76px;
  }

  .brand {
    flex-basis: 210px;
  }

  .brand img {
    max-height: 52px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .12);
    opacity: 0;
    padding: 0 4%;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
  }

  .menu.active {
    max-height: 360px;
    opacity: 1;
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .menu a {
    border-bottom: 1px solid #eee;
    padding: 14px 4px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-slider,
  .hero-slide {
    min-height: calc(100vh - 76px);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-photo {
    min-height: 0;
  }

  .about-image {
    width: min(100%, 620px);
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    box-shadow:
      0 24px 50px rgba(0, 0, 0, .35),
      0 0 34px rgba(227, 6, 19, .14);
  }
}

@media (max-width: 620px) {
  .navbar {
    gap: 12px;
  }

  .brand {
    flex-basis: 170px;
  }

  .header-cta {
    display: none;
  }

  .hero-slider,
  .hero-slide {
    min-height: 680px;
  }

  .hero-content {
    padding: 70px 0 110px;
  }

  .slider-arrow {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    font-size: 31px;
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .slider-dots {
    bottom: 38px;
  }

  .section {
    padding: 62px 0;
  }

  .brands-carousel::before,
  .brands-carousel::after {
    width: 42px;
  }

  .brand-card {
    flex-basis: 235px;
  }

  .about-image,
  .about-photo {
    min-height: 0;
  }

  .about-image {
    aspect-ratio: 4 / 5;
  }

  .contact-data {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-data article:last-of-type,
  .contact-whatsapp {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
  }
}
