@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Nunito:wght@300;400;600;700&display=swap");

:root {
  --color-primary-100: #dff0d9;
  --color-primary-200: #bee1b3;
  --color-primary-300: #94cc80;
  --color-primary-400: #5eb341;
  --color-primary-500: #289a02;
  --color-primary-600: #228302;
  --color-primary-700: #1c6c01;
  --color-primary-800: #165501;
  --color-primary-900: #103e01;

  --color-accent-100: #feeddc;
  --color-accent-200: #fedbb9;
  --color-accent-300: #fdc48a;
  --color-accent-400: #fca650;
  --color-accent-500: #fb8815;
  --color-accent-600: #d57412;
  --color-accent-700: #b05f0f;
  --color-accent-800: #8a4b0c;
  --color-accent-900: #643608;

  --color-neutral-100: #fefefe;
  --color-neutral-200: #fcfdfc;
  --color-neutral-300: #fafbfa;
  --color-neutral-400: #f8f9f8;
  --color-neutral-500: #f5f7f5;
  --color-neutral-600: #d0d2d0;
  --color-neutral-700: #acadac;
  --color-neutral-800: #878887;
  --color-neutral-900: #626362;

  --color-dark-100: #dddfe1;
  --color-dark-200: #bcbfc3;
  --color-dark-300: #8f949b;
  --color-dark-400: #575e69;
  --color-dark-500: #1f2937;
  --color-dark-600: #1a232f;
  --color-dark-700: #161d26;
  --color-dark-800: #11171e;
  --color-dark-900: #0c1016;

  --color-danger-100: #fadede;
  --color-danger-200: #f4bebe;
  --color-danger-300: #ee9292;
  --color-danger-400: #e55c5c;
  --color-danger-500: #dc2626;
  --color-danger-600: #bb2020;
  --color-danger-700: #9a1b1b;
  --color-danger-800: #791515;
  --color-danger-900: #580f0f;

  --color-info-100: #dbf2fc;
  --color-info-200: #b7e4f8;
  --color-info-300: #86d2f4;
  --color-info-400: #4abcee;
  --color-info-500: #0ea5e9;
  --color-info-600: #0c8cc6;
  --color-info-700: #0a73a3;
  --color-info-800: #085b80;
  --color-info-900: #06425d;

  --bg-page: var(--color-neutral-200);
  --bg-surface: #ffffff;
  --bg-soft: var(--color-neutral-400);

  --text-primary: var(--color-dark-800);
  --text-secondary: var(--color-dark-400);
  --text-muted: var(--color-dark-300);
  --text-on-primary: #ffffff;
  --text-on-accent: #ffffff;

  --border-color: var(--color-neutral-600);
  --border-strong: var(--color-dark-200);

  --button-primary-bg: var(--color-primary-500);
  --button-primary-hover: var(--color-primary-600);
  --button-primary-active: var(--color-primary-700);

  --button-accent-bg: var(--color-accent-500);
  --button-accent-hover: var(--color-accent-600);
  --button-accent-active: var(--color-accent-700);

  --state-success: var(--color-primary-500);
  --state-danger: var(--color-danger-500);
  --state-info: var(--color-info-500);

  --focus-ring: var(--color-info-400);
  --shadow-color: rgba(12, 16, 22, 0.08);

  --font-body: "Nunito", sans-serif;
  --font-heading: "Playfair Display", serif;
}

/* =========================
   MODERN SCROLLBAR
========================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6; /* gris suave */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #289a02, #1f7a01);
  border-radius: 999px;
  border: 2px solid #f3f4f6;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2fb403, #289a02);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #289a02 #f3f4f6;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding: 50px;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

button,
.nav-link,
.cta-text {
  font-family: var(--font-body);
  font-weight: 700;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding: 12px 16px 0;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    padding 0.3s ease;
}

.nav-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 18px;
  min-height: 76px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--color-accent-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent-500);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-accent-600);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

.navbar.scrolled {
  padding-top: 10px;
}

.navbar.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(12, 16, 22, 0.08);
}

.navbar.scrolled .nav-link {
  color: var(--color-dark-800);
}

.navbar.scrolled .menu-toggle {
  color: var(--color-dark-800);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(12, 16, 22, 0.985);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.mobile-menu-header img {
  display: block;
  height: 50px;
  object-fit: contain;
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu-link {
  color: white;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-menu-cta {
  margin-top: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  width: 100%;
  border-radius: 10px;
  background: var(--color-accent-500);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */

@media (max-width: 900px) {
  .navbar {
    padding: 10px 12px 0;
  }

  .nav-container {
    padding: 12px 16px;
    min-height: 88px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-logo img {
    height: 68px;
  }

  .nav-actions .btn-primary {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 8px 10px 0;
  }

  .nav-container {
    padding: 10px 14px;
    min-height: 82px;
    border-radius: 16px;
  }

  .nav-logo img {
    height: 62px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .menu-toggle svg,
  .mobile-menu-close svg {
    width: 26px;
    height: 26px;
  }

  .mobile-menu {
    padding: 18px 18px 28px;
  }

  .mobile-menu-header {
    margin-bottom: 40px;
  }

  .mobile-menu-header img {
    height: 44px;
  }

  .mobile-menu-link {
    font-size: 1.22rem;
  }
}

/* =========================
   HERO CAROUSEL
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 16, 22, 0.72),
    rgba(12, 16, 22, 0.45),
    rgba(12, 16, 22, 0.28)
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 90%);
  color: white;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-400);
  margin-bottom: 18px;
}

.hero-content h1 {
  max-width: 750px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: white;
}

.hero-text {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dot.active {
  background: var(--color-accent-500);
  transform: scale(1.15);
}

/* =========================
   SERVICES
========================= */

.services {
  padding: 90px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  color: var(--color-dark-800);
  margin-bottom: 18px;
}

.services-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(17, 23, 30, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(12, 16, 22, 0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.1);
}

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.service-card-body {
  position: relative;
  padding: 42px 24px 24px;
}

.service-icon {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);

  width: 54px;
  height: 54px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fdf1e5;
  color: var(--color-accent-500);
  box-shadow: 0 10px 24px rgba(12, 16, 22, 0.08);
  z-index: 2;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-dark-800);
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-600);
  text-decoration: none;
  font-weight: 800;
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* =========================
   BEFORE / AFTER
========================= */

.before-after {
  padding: 90px 20px;
}

.before-after-container {
  max-width: 1200px;
  margin: 0 auto;
}

.before-after-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.before-after-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.before-after-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.before-after-carousel {
  width: 100%;
  position: relative;
}

.before-after-card {
  display: none;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

.before-after-card.active {
  display: block;
}

.before-after-compare {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  background: #ddd;
}

.before-image,
.after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  z-index: 3;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--color-dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(12, 16, 22, 0.16);
  cursor: ew-resize;
}

.compare-handle svg {
  width: 22px;
  height: 22px;
}

.compare-label {
  position: absolute;
  top: 22px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(12, 16, 22, 0.68);
  color: white;
  backdrop-filter: blur(8px);
}

.before-label {
  left: 22px;
}

.after-label {
  right: 22px;
}

.before-after-card-content {
  padding: 28px 28px 32px;
}

.before-after-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--color-dark-800);
}

.before-after-card-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 760px;
}

.before-after-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(12, 16, 22, 0.12);
}

.before-after-nav svg {
  width: 22px;
  height: 22px;
}

.before-after-prev {
  left: 16px;
}

.before-after-next {
  right: 16px;
}

.before-after-dots {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.before-after-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(17, 23, 30, 0.18);
  cursor: pointer;
  transition: 0.3s ease;
}

.before-after-dot.active {
  background: var(--color-accent-500);
  transform: scale(1.15);
}

/* =========================
   ABOUT
========================= */

.about {
  padding: 90px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

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

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.about-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-dark-700);
}

.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-500);
}

.about-cta {
  margin-top: 26px;
}

/* =========================
   VALUES
========================= */

.values {
  padding-bottom: 120px;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(17, 23, 30, 0.06);
  box-shadow: 0 10px 30px rgba(12, 16, 22, 0.04);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--color-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-600);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-dark-800);
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us {
  padding: 90px 20px;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.why-choose-content {
  min-width: 0;
}

.why-choose-header {
  max-width: 100%;
  margin: 0 0 36px;
  text-align: left;
}

.why-choose-actions {
  margin-top: 24px;
}

.reviews-widget {
  width: 100%;
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(17, 23, 30, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

.reviews-widget-top {
  margin-bottom: 24px;
}

.reviews-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: 12px;
}

.reviews-title {
  font-size: clamp(1.6rem, 2.5vw, 1.85rem);
  color: var(--color-dark-800);
  margin-bottom: 12px;
  line-height: 1.15;
}

.reviews-description {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.reviews-widget-placeholder {
  width: 100%;
}

.reviews-box {
  min-height: 220px;
  border-radius: 18px;
  border: 2px dashed rgba(17, 23, 30, 0.14);
  background: var(--color-neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.reviews-box span {
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.6;
}

/* =========================
   WHY CHOOSE US RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-choose-header {
    text-align: center;
  }

  .why-choose-actions {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .why-choose-us {
    padding: 75px 18px;
  }

  .why-choose-layout {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .reviews-widget {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .reviews-title {
    font-size: 1.5rem;
  }

  .reviews-box {
    min-height: 200px;
    padding: 18px;
  }
}

/* =========================
   SERVICE AREA
========================= */

.service-area {
  padding: 90px 20px;
}

.service-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  border: none;
  border-radius: 16px;
}

.service-area-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 32px;
  align-items: start;
}

.service-area-content {
  min-width: 0;
}

.service-area-header {
  max-width: 100%;
  margin: 0 0 36px;
  text-align: left;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  background: #ffffff;
  border: 1px solid rgba(17, 23, 30, 0.06);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(12, 16, 22, 0.04);
  font-weight: 700;
  color: var(--color-dark-700);
  min-width: 0;
}

.service-area-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}

.service-area-item span {
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-area-note {
  margin-top: 20px;
}

.service-area-note p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-area-actions {
  margin-top: 24px;
}

/* RIGHT CARD */

.service-area-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(17, 23, 30, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

.service-area-card-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: 12px;
}

.service-area-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 1.8rem);
  color: var(--color-dark-800);
  margin-bottom: 14px;
  line-height: 1.15;
}

.service-area-card > p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.service-area-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  background: var(--color-primary-100);
  border-radius: 18px;
}

.service-area-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-area-highlight strong {
  display: block;
  color: var(--color-dark-800);
  margin-bottom: 4px;
  line-height: 1.4;
}

.service-area-highlight span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-area-map-placeholder {
  margin-top: 22px;
  width: 100%;
  height: 260px;
  min-height: 260px;
  border-radius: 18px;
  border: 2px dashed rgba(17, 23, 30, 0.14);
  background: var(--color-neutral-300);
  overflow: hidden;
}

.service-area-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-area-map-placeholder span {
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.6;
}

/* =========================
   SERVICE AREA RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-area-header {
    text-align: center;
  }

  .service-area-note,
  .service-area-actions {
    text-align: center;
  }

  .service-area-card {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .service-area {
    padding: 75px 18px;
  }

  .service-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-area-list {
    grid-template-columns: 1fr;
  }

  .service-area-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .service-area-card h3 {
    font-size: 1.5rem;
  }

  .service-area-highlight {
    padding: 16px;
    border-radius: 16px;
  }

  .service-area-map-placeholder {
    height: 220px;
    min-height: 220px;
  }
}

/* =========================
   FAQS
========================= */

.faqs {
  padding: 90px 20px;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
}

.faqs-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 23, 30, 0.06);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(12, 16, 22, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-dark-800);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--color-dark-800);
  color: rgba(255, 255, 255, 0.88);
  padding: 80px 20px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 58px;
  object-fit: contain;
}

.footer-text {
  max-width: 320px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.footer-cta {
  width: fit-content;
}

.footer-column h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li,
.footer-contact li {
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-links a,
.footer-bottom-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-links span,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 0.92rem;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 90px 20px;
  background: var(--bg-page);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(17, 23, 30, 0.08);
  box-shadow: 0 10px 30px rgba(12, 16, 22, 0.04);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--color-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-600);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card p {
  font-weight: 700;
  margin-bottom: 6px;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .quick-contact-options {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .footer {
    padding: 70px 18px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-text {
    max-width: 100%;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .service-area {
    padding: 75px 18px;
  }

  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-area-header {
    text-align: center;
  }

  .service-area-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-area-list {
    grid-template-columns: 1fr;
  }

  .service-area-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .service-area-card h3 {
    font-size: 1.5rem;
  }

  .service-area-map-placeholder {
    min-height: 220px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .why-choose-us {
    padding: 75px 18px;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-choose-header {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .reviews-widget {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .why-point {
    padding: 18px;
    gap: 14px;
  }

  .why-point-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .why-point h3 {
    font-size: 1.12rem;
  }

  .reviews-score span {
    font-size: 2.5rem;
  }

  .review-card {
    padding: 18px;
  }
}

/* =========================
   RESPONSIVE
========================= */

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

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

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* =========================
   RESPONSIVE
========================= */

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

  .menu-toggle {
    display: block;
  }

  .navbar {
    top: 0;
  }

  .nav-container {
    padding: 14px 18px;
  }

  .nav-logo img {
    height: 52px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-actions .btn-primary {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .hero-content {
    width: 88%;
    text-align: center;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 4.5rem);
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 90px;
  }

  .hero-arrow {
    top: auto;
    bottom: 120px;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .hero-arrow-left {
    left: calc(50% - 58px);
  }

  .hero-arrow-right {
    right: calc(50% - 58px);
  }

  .hero-dots {
    bottom: 36px;
  }
}

@media (max-width: 640px) {
  .nav-actions a{
    display: none;
  }

  .btn-primary svg {
    width: 14px;
    height: 14px;
  }

  .hero-content {
    width: 86%;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 4rem);
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 34px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 14px;
    margin-bottom: 110px;
  }

  .hero-buttons a {
    min-width: 170px;
    min-height: 50px;
  }

  .hero-arrow {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* contenedor visual de ambas flechas */
  .hero-arrow-left {
    left: calc(50% - 58px);
  }

  .hero-arrow-right {
    right: calc(50% - 58px);
  }

  .hero-dots {
    position: absolute;
    bottom: 35px;
    left: 45%;
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .services {
    padding: 75px 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-header {
    margin-bottom: 42px;
  }

  .services-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 0;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-body {
    position: relative;
    padding: 40px 20px 20px;
  }

  .service-icon {
    left: 20px;
  }
}

@media (max-width: 900px) {
  .before-after {
    padding: 75px 18px;
  }

  .before-after-carousel-wrapper {
    overflow: visible;
  }

  .before-after-compare {
    height: 420px;
  }

  .before-after-prev {
    left: 12px;
  }

  .before-after-next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .before-after {
    padding: 70px 16px;
  }

  .before-after-container {
    overflow: visible;
  }

  .before-after-header {
    margin-bottom: 36px;
  }

  .before-after-carousel-wrapper {
    overflow: visible;
    padding-bottom: 0;
  }

  .before-after-card {
    border-radius: 20px;
    overflow: hidden;
  }

  .before-after-compare {
    height: 260px;
  }

  .before-after-card-content {
    padding: 20px 18px 22px;
  }

  .before-after-card-content h3 {
    font-size: 1.1rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .before-after-card-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .before-after-nav {
    position: absolute;
    top: 130px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(12, 16, 22, 0.14);
  }

  .before-after-prev {
    left: 10px;
  }

  .before-after-next {
    right: 10px;
  }

  .before-after-nav svg {
    width: 18px;
    height: 18px;
  }

  .compare-handle {
    width: 48px;
    height: 48px;
  }

  .compare-handle svg {
    width: 20px;
    height: 20px;
  }

  .compare-label {
    top: 12px;
    padding: 7px 11px;
    font-size: 0.74rem;
    border-radius: 999px;
  }

  .before-label {
    left: 12px;
  }

  .after-label {
    right: 12px;
  }

  .before-after-dots {
    margin-top: 16px;
    gap: 8px;
  }

  .before-after-dot {
    width: 11px;
    height: 11px;
  }
}

/* =========================
   QUOTE PAGE
========================= */

.quote-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(12, 16, 22, 0.55), rgba(12, 16, 22, 0.55)),
    url("./assets/hero-2.jpeg") center / cover no-repeat;
}

.quote-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
}

.quote-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 36px;
  align-items: center;
}

.quote-content {
  color: white;
  min-width: 0;
}

.quote-content h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 18px;
  color: white;
  max-width: 680px;
}

.quote-text {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: white;
}

.quote-benefit svg {
  width: 19px;
  height: 19px;
  color: var(--color-accent-400);
  flex-shrink: 0;
}

.quote-note {
  margin-top: 20px;
}

.quote-note p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.quote-form-card {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(12, 16, 22, 0.18);
  border: 1px solid rgba(17, 23, 30, 0.06);
}

.quote-form-header {
  margin-bottom: 24px;
}

.quote-form-header h2 {
  font-size: 2rem;
  color: var(--color-dark-800);
  margin-bottom: 10px;
}

.quote-form-header p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-group label {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--color-dark-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(17, 23, 30, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-dark-800);
  background: #ffffff;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 4px rgba(40, 154, 2, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.g-recaptcha {
  max-width: 100%;
  transform: scale(0.95);
  transform-origin: left top;
}

.quote-form-actions {
  margin-top: 6px;
}

.quote-form-actions .btn-primary {
  border: none;
  cursor: pointer;
  min-height: 52px;
  width: 100%;
  font-size: 1rem;
}

/* =========================
   QUOTE PAGE RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .quote-content {
    text-align: center;
  }

  .quote-content h1,
  .quote-text {
    max-width: 100%;
  }

  .quote-benefits {
    align-items: center;
  }

  .quote-form-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .quote-hero {
    min-height: auto;
    padding: 105px 18px 50px;
  }

  .quote-content h1 {
    font-size: clamp(2.1rem, 7vw, 3.5rem);
  }

  .quote-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .quote-form-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .quote-hero {
    padding: 96px 14px 40px;
  }

  .quote-container {
    width: 100%;
  }

  .quote-content h1 {
    font-size: clamp(1.95rem, 9vw, 2.9rem);
    line-height: 1.08;
  }

  .quote-text {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .quote-benefits {
    gap: 12px;
    align-items: stretch;
  }

  .quote-benefit {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.95rem;
  }

  .quote-form-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .quote-form-header h2 {
    font-size: 1.55rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .g-recaptcha {
    transform: scale(0.84);
    transform-origin: left top;
  }
}

@media (max-width: 380px) {
  .quote-hero {
    padding: 92px 12px 36px;
  }

  .quote-content h1 {
    font-size: 1.8rem;
  }

  .quote-form-card {
    padding: 18px 14px;
  }

  .g-recaptcha {
    transform: scale(0.76);
  }
}