:root {
  --color-black: #070C0F;
  --color-white: #FDFDFD;
  --color-red: #E01B23;
  --color-gray-light: #A7A5A7;
  --color-gray-dark: #494D4F;
  --bg-dark: #070C0F;
  --bg-elevated: #0D151B;
  --bg-highlight: linear-gradient(140deg, rgba(224, 27, 35, 0.18) 0%, rgba(7, 12, 15, 0.95) 65%);
  --accent: #E01B23;
  --accent-dark: #B9151C;
  --text-primary: #FDFDFD;
  --text-secondary: #A7A5A7;
  --border: rgba(167, 165, 167, 0.16);
  --container-width: min(1120px, 90vw);
  --shadow-soft: 0 30px 80px rgba(7, 12, 15, 0.45);
  --shadow-card: 0 18px 50px rgba(7, 12, 15, 0.35);
  font-size: 16px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.topbar {
  backdrop-filter: blur(10px);
  background: rgba(7, 12, 15, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.brand__logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  padding: 8rem 0 6rem;
  background: radial-gradient(circle at top left, rgba(224, 27, 35, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(73, 77, 79, 0.45), transparent 50%);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero__text h1 {
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero__text p {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  max-width: 32rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}


.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--accent);
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(224, 27, 35, 0.35);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(224, 27, 35, 0.42);
}

.btn--primary:active {
  background: var(--accent-dark);
  color: var(--color-white);
  transform: translateY(0);
  box-shadow: 0 14px 32px rgba(224, 27, 35, 0.35);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: rgba(13, 21, 27, 0.6);
}

.btn--ghost:hover,
.btn--ghost:focus {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero__image {
  height: min(520px, 70vh);
  border-radius: 24px;
  background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=900&q=80') center/cover;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(224, 27, 35, 0.24);
  mix-blend-mode: screen;
}

section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0.8rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

@media (min-width: 961px) {
  .services .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  background: var(--bg-elevated);
  padding: 2.2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}

.service-card .price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.2rem;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 27, 35, 0.55);
}

.benefits {
  background: var(--bg-highlight);
  border-top: 1px solid rgba(224, 27, 35, 0.24);
  border-bottom: 1px solid rgba(224, 27, 35, 0.24);
}

.benefits__content {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.benefits__content p {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.benefit-list li {
  background: rgba(7, 12, 15, 0.72);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.benefit-list span {
  color: var(--text-secondary);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 961px) {
  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.location-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.location-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.location-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.location-card .link {
  color: var(--accent);
  font-weight: 600;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 27, 35, 0.55);
}

.testimonials {
  background: radial-gradient(circle at top, rgba(224, 27, 35, 0.16), transparent 55%),
    rgba(7, 12, 15, 0.85);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: rgba(7, 12, 15, 0.78);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-card figcaption {
  margin-top: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.cta {
  padding: 6rem 0 7rem;
}

.cta__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  background: var(--bg-highlight);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(224, 27, 35, 0.25);
  box-shadow: var(--shadow-soft);
}

.cta__text h2 {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
}

.cta__text p {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.cta__form {
  display: grid;
  gap: 1.2rem;
}

.cta__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.cta__form input,
.cta__form select {
  background: rgba(7, 12, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font: inherit;
}

.cta__form input:focus,
.cta__form select:focus {
  outline: none;
  border-color: rgba(224, 27, 35, 0.75);
  box-shadow: 0 0 0 3px rgba(224, 27, 35, 0.24);
}

.cta__note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: rgba(7, 12, 15, 0.95);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.brand--footer {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.footer__contact {
  display: grid;
  gap: 0.4rem;
}

.footer__contact a {
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__content,
  .benefits__content,
  .cta__content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__image {
    order: -1;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar .container {
    padding: 1rem 0;
  }

  section {
    padding: 4.5rem 0;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__content {
    padding: 2rem;
  }

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

.no-scroll {
  overflow: hidden;
}

.main-nav.is-open {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 5vw;
  background: rgba(7, 12, 15, 0.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-card);
}

.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-feedback[data-state='error'] {
  background: rgba(224, 27, 35, 0.12);
  color: #f28a90;
  border: 1px solid rgba(224, 27, 35, 0.4);
}

.form-feedback[data-state='success'] {
  background: rgba(73, 77, 79, 0.35);
  color: var(--color-white);
  border: 1px solid rgba(167, 165, 167, 0.4);
}

@media (min-width: 961px) {
  .main-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.legal-page main {
  padding: 0rem 0 8rem;
}

.legal__wrapper {
  background: var(--bg-elevated);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 2.5rem;
}

.legal__title {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 600;
}

.legal__intro {
  color: var(--text-secondary);
  max-width: 48rem;
}

.legal__block {
  display: grid;
  gap: 1rem;
}

.legal__block h2 {
  font-size: 1.3rem;
}

.legal__block p {
  color: var(--text-secondary);
}

.legal__list {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.6rem;
}

.legal__footer {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .legal__wrapper {
    padding: 2rem;
    gap: 2rem;
  }
}
.cta__disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

.cta__disclaimer a {
  color: var(--accent);
  font-weight: 500;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 30;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 15, 0.85);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 420px;
  width: min(100%, 420px);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.modal__title {
  font-size: 1.8rem;
  font-weight: 600;
}

.modal__message {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .modal__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal__close:hover,
.modal__close:focus {
  color: var(--accent);
}
.product-showcase {
  padding: 5.5rem 0;
}

.product-showcase__header {
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.product-showcase__header p {
  color: var(--text-secondary);
}

.product-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.2rem 2rem;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(13, 21, 27, 0.96) 0%, rgba(24, 24, 31, 0.8) 100%);
  border: 1px solid rgba(167, 165, 167, 0.18);
  box-shadow: 0 28px 70px rgba(7, 12, 15, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(224, 27, 35, 0.35);
  box-shadow: 0 36px 90px rgba(7, 12, 15, 0.55);
}

.product-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 55px rgba(7, 12, 15, 0.35);
}

.product-card__media--vertical {
  aspect-ratio: 3 / 4;
}

.product-card__body h3 {
  font-size: 1.2rem;
}

.product-card__body p {
  color: var(--text-secondary);
}

.product-card__actions {
  margin-top: auto;
}

.btn--sm {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
}

@media (max-width: 639px) {
  .product-card {
    padding: 2rem 1.6rem;
    gap: 1.2rem;
    text-align: center;
  }

  .product-card__body p {
    font-size: 0.95rem;
  }

  .product-card__actions {
    justify-content: center;
  }

  .btn--sm {
    width: 100%;
    justify-content: center;
  }
}

.product-hero {
  padding: clamp(4.5rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5rem);
}

.product-hero__content {
  gap: clamp(1.8rem, 5vw, 2.8rem);
  align-items: center;
}

@media (min-width: 960px) {
  .product-hero__content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.product-hero__image {
  border-radius: 30px;
  min-height: clamp(260px, 60vw, 460px);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 959px) {
  .product-hero__image {
    order: -1;
    max-width: min(420px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 639px) {
  .product-hero__content {
    text-align: center;
  }

  .product-hero .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-hero__image {
    border-radius: 24px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 21, 27, 0.92);
  border: 1px solid rgba(253, 253, 253, 0.08);
  box-shadow: 0 20px 45px rgba(7, 12, 15, 0.55);
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(7, 12, 15, 0.65);
}

.whatsapp-float img {
  width: 56%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }
}
.product-topbar {
  border-bottom: none;
}

.product-topbar .main-nav a.is-active {
  color: var(--accent);
}

.product-topbar .main-nav a.is-active::after {
  transform: scaleX(1);
}

.cta__form label select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath fill='%23fdfdfd' d='M8 10a1.15 1.15 0 0 1-.82-.35l-6.8-6.94A1.16 1.16 0 0 1 1 0h14a1.16 1.16 0 0 1 .62 2.13l-6.79 6.94A1.15 1.15 0 0 1 8 10Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px auto;
  padding-right: 2.5rem;
}

.cta__form label select option {
  background-color: rgba(13, 21, 27, 0.95);
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .cta__form label select {
    background-position: right 0.85rem center;
    padding-right: 2.2rem;
  }
}
