﻿:root {
  --ink: #10223f;
  --muted: #687487;
  --paper: #f8f7f5;
  --surface: #ffffff;
  --line: rgba(16, 34, 63, 0.12);
  --orange: #e87932;
  --blue: #193f75;
  --green: #22b75b;
  --gold: #e9a72c;
  --deep: #08182f;
  --shadow: 0 24px 70px rgba(16, 34, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  timeline-scope: --page-scroll;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.6rem, 14vw, 9.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h3,
p {
  margin-top: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  display: flex;
  width: calc(100% - 32px);
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(8, 24, 47, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: header-scroll linear both;
  animation-timeline: scroll(root);
  animation-range: 0 260px;
}

@keyframes header-scroll {
  from {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(8, 24, 47, 0.14);
  }

  to {
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 45px rgba(8, 24, 47, 0.08);
  }
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.brand-logo {
  display: grid;
  width: 190px;
  height: 86px;
  flex: 0 0 auto;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.brand-logo img {
  width: 122%;
  height: 122%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b4658;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(25, 63, 117, 0.1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 132px 16px 0;
  background: var(--paper);
}

.banner-rotator {
  position: relative;
  width: 100%;
  max-width: 1480px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(8, 24, 47, 0.18);
  min-height: 0;
  max-height: none;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: banner-fade 15s infinite;
}

.slide-one {
  opacity: 1;
}

.slide-two {
  animation-delay: 5s;
}

.slide-three {
  animation-delay: 10s;
}

.promo-banner {
  object-fit: cover;
  background: transparent;
}

.banner-dots {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

.banner-dots span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  animation: dot-active 10s infinite;
}

.banner-dots span:nth-child(2) {
  animation-delay: 5s;
}

.banner-dots span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes banner-fade {
  0%,
  29% {
    opacity: 1;
  }

  33%,
  96% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes dot-active {
  0%,
  29% {
    background: #ffffff;
  }

  33%,
  96% {
    background: rgba(255, 255, 255, 0.48);
  }

  100% {
    background: #ffffff;
  }
}

.hero-info {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding-bottom: 28px;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(8, 24, 47, 0.16);
  backdrop-filter: blur(14px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.btn {
  padding: 0 22px;
}

.btn-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 35px rgba(34, 183, 91, 0.28);
}

.btn-primary:hover {
  background: #1f9f50;
}

.btn-secondary {
  color: var(--blue);
  border: 1px solid rgba(25, 63, 117, 0.22);
  background: #ffffff;
  backdrop-filter: blur(12px);
}

.btn.dark {
  box-shadow: none;
}

.hero-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(25, 63, 117, 0.12);
  border-radius: 16px;
  background: rgba(25, 63, 117, 0.06);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  min-width: 0;
  padding: 18px;
}

.hero-stats article + article {
  border-left: 1px solid rgba(25, 63, 117, 0.12);
}

.hero-stats strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.authorized-strip {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue);
}

.authorized-strip p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.authorized-strip strong {
  color: #ffffff;
}

.section-shell {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.intro-section,
.local-section,
.feature-band,
.brands-section,
.reviews-section,
.cta-section,
.location-section {
  padding: 88px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.local-section {
  padding-top: 0;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.local-note,
.local-list,
.product-highlight,
.feature-card,
.review-card,
.cta-panel,
.map-card {
  border-radius: 16px;
}

.local-note {
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 24, 47, 0.95) 0%, rgba(8, 24, 47, 0.9) 48%, rgba(8, 24, 47, 0.42) 78%, rgba(8, 24, 47, 0.22) 100%),
    url("./assets/tintometrica-bg.svg") center / cover no-repeat,
    linear-gradient(90deg, var(--orange), var(--blue), var(--green));
  box-shadow: var(--shadow);
}

.local-note span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-note strong {
  display: block;
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.local-note p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.local-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 34, 63, 0.1);
}

.local-list p {
  display: flex;
  min-height: 62px;
  align-items: center;
  margin: 0;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 900;
}

.local-list p::before {
  width: 12px;
  height: 12px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.local-list p:nth-child(2)::before {
  background: var(--blue);
}

.local-list p:nth-child(3)::before {
  background: var(--gold);
}

.local-list p:nth-child(4)::before {
  background: var(--green);
}

.feature-band {
  background: #ffffff;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-highlight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid rgba(25, 63, 117, 0.12);
  background: linear-gradient(135deg, rgba(25, 63, 117, 0.05), rgba(25, 63, 117, 0.12));
  box-shadow: 0 18px 48px rgba(25, 63, 117, 0.1);
}

.product-highlight img {
  min-height: 280px;
}

.product-highlight div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.product-highlight h3 {
  max-width: 680px;
  color: var(--blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.02;
}

.product-highlight p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-grid,
.reviews-grid {
  display: grid;
  gap: 16px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.review-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 34, 63, 0.06);
}

.image-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: #ffffff;
}

.image-card.tall {
  grid-row: span 2;
  min-height: 616px;
}

.image-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

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

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 24, 47, 0.88), rgba(8, 24, 47, 0.08) 62%);
  content: "";
}

.image-card div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.image-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.05rem;
  font-weight: 400;
}

.image-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.brands-section {
  background: var(--paper);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: brand-scroll 28s linear infinite;
}

.brand-track img {
  width: 210px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 16px 34px;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(16, 34, 63, 0.08));
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

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

.reviews-section {
  background: var(--deep);
  color: #ffffff;
}

.reviews-section .section-kicker,
.stars {
  color: var(--gold);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  min-height: 240px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.stars {
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.review-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(232, 121, 50, 0.14), rgba(25, 63, 117, 0.09)),
    var(--paper);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cta-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

address {
  margin: 0 0 24px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  font-weight: 800;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(8, 24, 47, 0.42), rgba(8, 24, 47, 0.55)),
    linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, 0.15) 48% 52%, transparent 52%),
    linear-gradient(120deg, var(--green), var(--blue) 45%, var(--orange));
  box-shadow: var(--shadow);
}

.map-pin {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 12px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  inset: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.map-card strong {
  margin-top: -36px;
  font-size: 1.35rem;
}

.map-card small {
  margin-top: -94px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  font-weight: 500;
}

.footer-shell {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: clamp(42px, 8vw, 110px);
}

.footer-column h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column p,
.footer-column address {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.75;
}

.footer-column p + p {
  margin-top: 4px;
}

.footer-column a {
  color: inherit;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #00f27a;
  font-weight: 700;
}

.footer-whatsapp::before {
  content: "☎";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(34, 183, 91, 0.38);
  font-size: 1.35rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav {
    gap: 4px;
    font-size: 0.82rem;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 92px;
    padding: 10px 16px;
  }

  .brand-logo {
    width: 158px;
    height: 72px;
  }

  .hero {
    padding: 116px 12px 0;
  }

  .intro-grid,
  .section-heading,
  .local-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .image-card.tall {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 360px;
  }

  .product-highlight {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 78px;
    padding: 8px 12px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 118px;
    height: 58px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 96px 10px 0;
  }

  .banner-rotator {
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin-top: 0;
    max-height: none;
    border-radius: 18px;
  }

  .hero-info {
    margin-top: 0;
    padding: 16px 0 0;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 5.8rem);
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-stats,
  .product-highlight,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .brand-track img {
    width: 168px;
    height: 76px;
    padding: 12px 24px;
  }

  .hero-stats article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .intro-section,
  .local-section,
  .feature-band,
  .brands-section,
  .reviews-section,
  .cta-section,
  .location-section {
    padding: 62px 0;
  }

  .image-card.tall {
    grid-column: auto;
    min-height: 320px;
  }

  .product-highlight div,
  .cta-panel {
    padding: 26px;
  }

  .btn,
  .contact-list a {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-shell {
    width: calc(100% - 32px);
    padding: 56px 0 34px;
  }

  .footer-bottom {
    margin-top: 38px;
    text-align: left;
  }
}

