:root {
  --font-primary: "adobe-garamond-pro", Garamond, Georgia, serif;
  --font-secondary: "Jost", sans-serif;
}

body {
  font-family: var(--font-secondary);
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
.font-primary,
.font-display {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

/* Misión / Visión / Valores — cards desplegables */
.mvp-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mvp-card.is-open,
.mvp-card:focus-visible {
  background: #fff;
  border-color: #EC671A;
  box-shadow: 0 8px 24px rgba(236, 103, 26, 0.12);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .mvp-card:hover {
    background: #fff;
    border-color: #EC671A;
    box-shadow: 0 8px 24px rgba(236, 103, 26, 0.12);
  }
}

.mvp-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mvp-icon {
  width: 2rem;
  height: 2rem;
  color: #EC671A;
}

.mvp-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #464B4A;
  font-family: var(--font-primary);
}

.mvp-card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.mvp-card.is-open .mvp-card-body {
  max-height: 28rem;
  opacity: 1;
  margin-top: 1rem;
}

@media (hover: hover) and (pointer: fine) {
  .mvp-card:hover .mvp-card-body {
    max-height: 28rem;
    opacity: 1;
    margin-top: 1rem;
  }
}

.mvp-card-body p,
.mvp-card-body ul {
  margin: 0;
  line-height: 1.65;
  color: #656A6B;
  font-size: 0.9375rem;
}

.mvp-card-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
}

.mvp-card-body li {
  text-align: center;
}

@media (min-width: 640px) {
  .mvp-card {
    padding: 2rem;
  }

  .mvp-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .mvp-card-header h3 {
    font-size: 1.75rem;
  }

  .mvp-card-body p {
    font-size: 0.975rem;
  }

  .mvp-card-body ul {
    font-size: 0.9rem;
  }
}

body.menu-open {
  overflow: hidden;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 6rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .header-logo img {
    height: 7rem;
  }
}

/* Compensa el header fijo para que los títulos no queden tapados al navegar a un ancla.
   Los valores dependen del padding superior propio de cada sección. */
#about,
#services,
#contact {
  scroll-margin-top: 5rem;
}

@media (min-width: 768px) {
  #about,
  #services {
    scroll-margin-top: 3rem;
  }

  #contact {
    scroll-margin-top: 6.5rem;
  }
}

/* Nav dropdown — Servicios */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 15rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.2rem;
  box-shadow: 0 12px 28px rgba(70, 75, 74, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 0.9rem;
  color: #464B4A;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.15rem;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f9fafb;
  color: #EC671A;
  outline: none;
}

.mobile-nav-group-label {
  margin: 0.75rem 1rem 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

.mobile-nav-sub {
  padding-left: 1.5rem !important;
  font-size: 1rem !important;
}

/* Hero: en móvil crece con el contenido; en desktop llena la pantalla */
.hero-section {
  position: relative;
  isolation: isolate;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 90svh;
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 5rem 1.5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(70, 75, 74, 0.6);
  pointer-events: none;
}

.hero-navigation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease;
  touch-action: manipulation;
  pointer-events: auto;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  outline: none;
}

.hero-arrow-prev {
  left: 0.75rem;
}

.hero-arrow-next {
  right: 0.75rem;
}

@media (min-width: 768px) {
  .hero-navigation {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }

  .hero-arrow {
    width: 3.25rem;
    height: 3.25rem;
  }

  .hero-arrow-prev {
    left: 1.5rem;
  }

  .hero-arrow-next {
    right: 1.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 1rem 3rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 7rem 1.5rem 3.5rem;
  }
}

/* En móvil las flechas se muestran entre el subtítulo y los botones */
@media (max-width: 767px) {
  .hero-navigation {
    position: static;
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
  }

  .hero-arrow {
    position: static;
    transform: none;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 20rem;
  height: 100%;
  background: #fff;
  padding: 5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #464B4A;
  border-radius: 0.75rem;
}

.mobile-nav-link:active {
  background: #f9fafb;
  color: #EC671A;
}

.mobile-nav-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #EC671A;
  border-radius: 0.2rem;
}

.mobile-nav-cta:active {
  background: #ea580c;
}

/* Contenedor general */
.page-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .page-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .why-advantages-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Category cards (index) */
.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 75, 74, 0.65);
}

.services-section-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-category-card {
  background: #fff;
  border-radius: 0.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.service-category-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #464B4A;
  font-family: var(--font-primary);
}

.service-category-card p {
  margin: 0 0 1.75rem;
  line-height: 1.65;
  flex: 1;
  color: #656A6B;
}

.service-category-btn {
  display: inline-block;
  background: #EC671A;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.2rem;
  transition: background-color 0.2s ease;
}

.service-category-btn:hover {
  background: #ea580c;
}

/* Inner service pages */
.page-header.solid {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.page-header.solid .nav-link,
.page-header.solid #mobile-menu-btn {
  color: #464B4A;
}

.services-page-hero {
  padding: 12.5rem 0 2.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
}

@media (min-width: 768px) {
  .services-page-hero {
    padding-top: 14rem;
  }
}

.services-page-hero .back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: #EC671A;
  font-weight: 500;
}

.services-page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: #464B4A;
  font-family: var(--font-primary);
  font-weight: 700;
}

.service-grid-section {
  position: relative;
  padding: 3rem 0 5rem;
  background-color: #fff;
}

.service-grid-section > .page-container {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 640px) {
  .service-grid-section > .page-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.service-group-title {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #EC671A;
  font-family: var(--font-primary);
  text-align: center;
}

.service-group-title:first-child {
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: 69rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 640px) {
  .service-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-tile {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: 0.2rem;
  overflow: hidden;
  cursor: pointer;
  background: #464B4A;
  font: inherit;
}

.service-tile-media {
  position: absolute;
  inset: 0;
}

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

.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 75, 74, 0.72);
  transition: background-color 0.3s ease;
}

.service-tile-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .service-tile-label {
    padding: 1.25rem;
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.3;
  }
}

.service-tile:hover .service-tile-media img,
.service-tile:focus-visible .service-tile-media img {
  transform: scale(1.05);
}

.service-tile:hover .service-tile-overlay,
.service-tile:focus-visible .service-tile-overlay {
  background: rgba(70, 75, 74, 0.82);
}

.service-tile:focus-visible {
  outline: 2px solid #EC671A;
  outline-offset: 2px;
}

.service-tile.is-active {
  outline: 2px solid #EC671A;
  outline-offset: 2px;
}

.service-tile.is-active .service-tile-overlay {
  background: rgba(236, 103, 26, 0.35);
}

/* Service detail panel */
.service-grid > .service-detail {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
}

.service-detail {
  position: relative;
  max-width: 69rem;
  margin: 0 auto;
  background: #EC671A;
  color: #fff;
  border: 0;
  border-radius: 0.2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transform: translateY(-0.5rem);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    padding 0.3s ease;
}

.service-detail.is-open {
  max-height: 44rem;
  opacity: 1;
  transform: translateY(0);
  padding: 1.5rem;
}

.service-detail-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.2rem;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-detail-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.service-detail-title {
  margin: 0 2.75rem 0.85rem 0;
  padding: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fff;
  font-family: var(--font-primary);
  border: 0;
  display: block;
  max-width: none;
  line-height: 1.25;
}

.service-detail-desc {
  margin: 0 0 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  max-width: none;
}

@media (min-width: 640px) {
  .service-detail-desc {
    font-size: 1.125rem;
  }
}

.service-detail-gallery {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.service-detail-gallery.is-centered {
  grid-template-columns: minmax(0, 1fr);
}

.service-detail-gallery.is-centered .service-gallery-btn {
  display: none;
}

.service-gallery-viewport {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.2rem;
}

.service-gallery-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.service-gallery-slide {
  flex: 0 0 auto;
  padding: 0 0.4rem;
  box-sizing: border-box;
}

.service-gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.2rem;
  background: rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-gallery-slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.service-gallery-btn {
  appearance: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.service-gallery-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.service-gallery-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.service-gallery-btn[hidden] {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 900px) {
  .service-gallery-viewport {
    max-width: 34rem;
  }
}

@media (max-width: 639px) {
  .service-gallery-viewport {
    max-width: 16rem;
  }

  .service-gallery-slide {
    padding: 0;
  }
}

/* Lightbox enlarge */
.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(70, 75, 74, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.service-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.service-lightbox[hidden] {
  display: none !important;
}

.service-lightbox-img {
  max-width: min(92vw, 56rem);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.service-lightbox.is-open .service-lightbox-img {
  transform: scale(1);
}

.service-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: #464B4A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-lightbox-close:hover {
  background: #fff;
}

body.lightbox-open {
  overflow: hidden;
}



/* Contacto */
.contact-section {
  background: #fff;
  color: #656A6B;
}

.contact-content {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.contact-heading {
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #464B4A;
  font-family: var(--font-primary);
  text-align: center;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-columns {
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
  }
}

.contact-map {
  width: 100%;
  min-height: 18rem;
  height: 100%;
  aspect-ratio: 16 / 11;
  background: #eef0f0;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.contact-quote {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-quote-btn {
  display: inline-block;
  appearance: none;
  border: 0;
  background: #EC671A;
  color: #fff;
  font: inherit;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.contact-quote-btn:hover {
  background: #ea580c;
}

.quote-form {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  padding: 1.25rem;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 640px) {
  .quote-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: #464B4A;
}

.quote-form-full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #464B4A;
  border-radius: 0.2rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9ca3af;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid #EC671A;
  outline-offset: 1px;
  border-color: transparent;
}

.quote-form .contact-quote-btn {
  width: 100%;
}

.contact-info {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-address,
.contact-phones,
.contact-emails {
  margin: 0 0 0.75rem;
  line-height: 1.65;
  color: #656A6B;
}

.contact-phones a,
.contact-emails a {
  color: #464B4A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-phones a:hover,
.contact-emails a:hover {
  color: #EC671A;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
  color: #464B4A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contact-whatsapp svg {
  display: block;
  flex-shrink: 0;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.contact-whatsapp:hover,
.contact-whatsapp:hover svg {
  color: #EC671A;
}

.contact-sep {
  margin: 0 0.4rem;
  opacity: 0.55;
}

/* Footer */
.site-footer {
  padding: 1.25rem 0 1rem;
  background: #464B4A;
  border-top: 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: auto 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 9rem;
  max-width: 100%;
  object-fit: contain;
}

.footer-contact p {
  margin: 0 0 0.25rem;
  line-height: 1.45;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #EC671A;
}

.footer-copy {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .contact-sep {
  color: rgba(255, 255, 255, 0.55);
}

/* Por qué elegirnos — galería */
.why-gallery {
  padding: 3.5rem 0 4rem;
  background: #f8f9f9;
}

.why-gallery-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: #464B4A;
  text-align: center;
}

.why-gallery-lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  text-align: center;
  color: #656A6B;
  line-height: 1.6;
}

.why-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .why-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.why-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
  aspect-ratio: 4 / 5;
  background: #464B4A;
}

.why-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.why-gallery-item:hover img {
  transform: scale(1.04);
}

/* Por qué elegirnos — CTA */
.why-cta {
  padding: 3rem 0 3.5rem;
  background: #fff;
}

.why-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  max-width: 36rem;
}

.why-cta-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: #464B4A;
}

.why-cta-text {
  margin: 0;
  line-height: 1.6;
  color: #656A6B;
  font-size: 1.05rem;
}

.why-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: #EC671A;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.2rem;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
}

.why-cta-btn:hover {
  background: #ea580c;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2.25rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.18);
  animation: whatsapp-float-bob 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 20px rgba(37, 211, 102, 0.5),
    0 14px 32px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

.whatsapp-float-icon {
  display: block;
  flex-shrink: 0;
}

@keyframes whatsapp-float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 639px) {
  .whatsapp-float {
    right: 1.25rem;
    bottom: 1.5rem;
    gap: 0.65rem;
    padding: 1.05rem 1.35rem;
    font-size: 1.05rem;
  }

  .whatsapp-float-icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: #EC671A;
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
}

.skip-link:focus {
  top: 1rem;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: #656A6B;
}

.page-breadcrumb a {
  color: #EC671A;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-intro {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  color: #656A6B;
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-faq {
  padding: 4rem 0 5rem;
  background: #f9fafb;
}

.seo-faq-title {
  margin: 0 0 2rem;
  text-align: center;
  color: #464B4A;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.seo-faq-list {
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}

.seo-faq-item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
}

.seo-faq-item h3 {
  margin: 0 0 0.55rem;
  color: #464B4A;
  font-size: 1.15rem;
  font-weight: 600;
}

.seo-faq-item p {
  margin: 0;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
}

.footer-nav a {
  color: #656A6B;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #EC671A;
}








