/**
 * Andesine Front Público - Estilos
 * Fuente: Anek Kannada
 */
@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada:wght@400;500;600;700&display=swap');

:root {
  --front-bg: #0a0f0d;
  --front-surface: #111916;
  --front-card: #161d1a;
  --front-border: rgba(255,255,255,0.08);
  --front-text: #e8ebe9;
  --front-muted: #8a9a94;
  --front-accent: #3d9b6d;
  --front-accent-hover: #4db87d;
  --front-radius: 10px;
  --front-container: 1200px;
  --header-bg: #fff;
  --header-text: #2d3436;
  --header-muted: #636e72;
  --header-border: rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Anek Kannada', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--front-text);
  background: var(--front-bg);
  -webkit-font-smoothing: antialiased;
}

.andesine-front-container {
  max-width: var(--front-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header - sticky, fondo blanco */
.andesine-front-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  overflow: visible;
}
.andesine-front-header .andesine-front-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.andesine-front-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.andesine-front-logo img {
  height: 44px;
  width: auto;
  display: block;
}
/* Contenedor nav + botón Ingresar en desktop */
.andesine-front-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  flex-shrink: 0;
}
.andesine-front-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.andesine-front-nav a {
  color: var(--header-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.andesine-front-nav a:hover {
  color: var(--header-text);
}

/* Equipos/Accesorios: solo en mobile (en desktop se usa el dropdown Productos) */
.andesine-nav-mobile-only {
  display: none;
}

/* Dropdown Productos: Equipos | Accesorios con categorías - solo en desktop */
.andesine-front-nav-item {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.andesine-front-nav-trigger {
  display: inline-flex;
  align-items: center;
  color: var(--header-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.andesine-front-nav-trigger {
  gap: 0.35rem;
}
.andesine-front-nav-trigger:hover,
.andesine-front-nav-item.is-active .andesine-front-nav-trigger {
  color: #a74011;
}
.andesine-nav-chevron {
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.andesine-front-nav-item.is-active .andesine-nav-chevron {
  transform: rotate(180deg);
}
.andesine-front-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  display: flex;
  gap: 2.5rem;
  min-width: 480px;
  max-width: 560px;
  padding: 1.5rem 1.75rem;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  border-radius: var(--front-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 200;
  margin-top: -4px;
}
.andesine-front-nav-item.is-active .andesine-front-dropdown,
.andesine-front-nav-item:hover .andesine-front-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.andesine-front-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
  flex: 1;
}
.andesine-front-dropdown-col > a,
.andesine-front-dropdown-col > .andesine-accordion-item {
  width: 100%;
  min-width: 0;
}
.andesine-front-dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--header-muted);
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--header-border);
}
.andesine-dropdown-icon {
  flex-shrink: 0;
  opacity: 0.85;
}
.andesine-front-dropdown-col > a {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 0 0.5rem;
  color: var(--header-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  text-align: left;
  font-family: inherit;
}
.andesine-front-dropdown-col > a .andesine-dropdown-link-icon,
.andesine-accordion-header .andesine-dropdown-link-icon {
  grid-column: 1;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.andesine-front-dropdown-col > a:hover {
  color: #a74011;
  background: rgba(167, 64, 17, 0.06);
}
.andesine-front-dropdown-col > a:hover .andesine-dropdown-link-icon {
  opacity: 1;
  transform: translateX(2px);
}

/* Acordeón para categorías con subcategorías */
.andesine-accordion-item {
  margin: 0 -0.5rem;
}
.andesine-accordion-header {
  display: grid;
  grid-template-columns: 14px 1fr 18px;
  align-items: center;
  gap: 0 0.5rem;
  width: 100%;
  border: none;
  background: none;
  color: var(--header-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-align: left;
  font-family: inherit;
}
.andesine-accordion-header:hover {
  color: #a74011;
  background: rgba(167, 64, 17, 0.06);
}
.andesine-accordion-header-text {
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.andesine-accordion-toggle {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
}
.andesine-accordion-toggle svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.25s ease;
}
.andesine-accordion-item.is-open .andesine-accordion-toggle svg {
  transform: rotate(180deg);
}
.andesine-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.andesine-accordion-item.is-open .andesine-accordion-body {
  grid-template-rows: 1fr;
}
.andesine-accordion-content {
  overflow: hidden;
  min-height: 0;
}
.andesine-accordion-content a {
  display: block;
  padding: 0.35rem 0.5rem 0.35rem 2rem;
  color: var(--header-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.andesine-accordion-content a::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--header-muted);
  border-radius: 50%;
  opacity: 0.5;
}
.andesine-accordion-content a:first-child {
  margin-top: 0.35rem;
}
.andesine-accordion-content a:last-child {
  margin-bottom: 0.25rem;
}
.andesine-accordion-content a:hover {
  color: #a74011;
  background: rgba(167, 64, 17, 0.06);
}
.andesine-accordion-content a:hover::before {
  background: #a74011;
  opacity: 1;
}

.andesine-front-btn-ingresar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--header-bg);
  border: 1px solid var(--header-muted);
  border-radius: var(--front-radius);
  color: var(--header-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.andesine-front-btn-ingresar:hover {
  border-color: var(--header-text);
  color: var(--header-text);
  background: rgba(45, 52, 54, 0.06);
}
.andesine-front-btn-ingresar svg {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}
.andesine-front-nav .andesine-front-btn-ingresar {
  display: none;
}

/* Hamburger - 3 líneas que se transforman en X */
.andesine-front-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  transition: transform 0.2s ease;
}
.andesine-hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--header-text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.andesine-front-hamburger.is-active .andesine-hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.andesine-front-hamburger.is-active .andesine-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  transition-duration: 0.15s;
}
.andesine-front-hamburger.is-active .andesine-hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 768px) {
  .andesine-front-hamburger { display: flex; }
  .andesine-front-btn-ingresar-desktop { display: none !important; }
  .andesine-front-header-right { display: contents; }
  .andesine-nav-mobile-only { display: block; }
  .andesine-nav-desktop-only { display: none !important; }
  .andesine-front-header .andesine-front-container { overflow: visible; }
  .andesine-front-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--header-bg);
    padding: 2rem 1.5rem 5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--header-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 99;
  }
  .andesine-front-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .andesine-front-nav > a,
  .andesine-front-nav .andesine-front-nav-trigger,
  .andesine-front-nav .andesine-nav-mobile-only {
    color: var(--header-text);
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--header-border);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  }
  .andesine-front-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .andesine-front-nav.is-open > a:nth-child(1) { transition-delay: 0.05s; }
  .andesine-front-nav.is-open > a:nth-child(2) { transition-delay: 0.08s; }
  .andesine-front-nav.is-open > a:nth-child(3) { transition-delay: 0.11s; }
  .andesine-front-nav.is-open > a:nth-child(5) { transition-delay: 0.14s; }
  .andesine-front-nav.is-open > a:nth-child(6) { transition-delay: 0.17s; }
  .andesine-front-nav.is-open > a:nth-child(7) { transition-delay: 0.2s; }
  .andesine-front-nav.is-open .andesine-front-btn-ingresar { transition-delay: 0.23s; }
  .andesine-front-nav .andesine-front-btn-ingresar {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem 1rem;
    border: 1px solid #111916;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.23s;
  }
  .andesine-front-nav.is-open .andesine-front-btn-ingresar {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main */
.andesine-front-main {
  min-height: calc(100vh - 72px - 200px);
}

/* Hero */
.andesine-front-hero {
  padding: 4rem 0 5rem;
  text-align: center;
}
.andesine-front-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.andesine-front-hero p {
  font-size: 1.15rem;
  color: var(--front-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.andesine-front-hero .andesine-front-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--front-accent);
  color: var(--front-bg) !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--front-radius);
  transition: background 0.2s;
}
.andesine-front-hero .andesine-front-btn:hover {
  background: var(--front-accent-hover);
}

/* Sections */
.andesine-front-section {
  padding: 4rem 0;
}
.andesine-front-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 2rem;
  text-align: center;
}

/* Cards grid */
.andesine-front-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.andesine-front-card {
  background: var(--front-card);
  border: 1px solid var(--front-border);
  border-radius: var(--front-radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.andesine-front-card:hover {
  border-color: rgba(61, 155, 109, 0.3);
  transform: translateY(-2px);
}
.andesine-front-card-img {
  aspect-ratio: 4/3;
  background: var(--front-surface);
  overflow: hidden;
}
.andesine-front-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.andesine-front-card-body {
  padding: 1.25rem;
}
.andesine-front-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.andesine-front-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.andesine-front-card-body h3 a:hover {
  color: var(--front-accent);
}
.andesine-front-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--front-muted);
  line-height: 1.5;
}

/* Page content */
.andesine-front-page {
  padding: 3rem 0 4rem;
}
.andesine-front-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.andesine-front-page-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.andesine-front-page-content p {
  margin: 0 0 1rem;
}
.andesine-front-page-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.andesine-front-page-content img,
.andesine-front-page-content video {
  max-width: 100%;
  height: auto;
}
.andesine-front-page-content iframe {
  max-width: 100%;
}

/* Footer */
.andesine-front-footer {
  margin-top: 4rem;
}
.andesine-front-footer-main {
  background: #f0f2f1;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.andesine-front-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}
.andesine-front-footer-brand .andesine-front-footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1rem;
}
.andesine-front-footer-logo {
  height: 42px;
  width: auto;
  display: block;
}
.andesine-front-footer-brand p {
  margin: 0 0 1.25rem;
  color: #4a5552;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 340px;
}
.andesine-front-footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.andesine-front-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2d484b;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.andesine-front-footer-social a:hover {
  background: #a74011;
  transform: translateY(-2px);
}
.andesine-front-footer-social svg {
  flex-shrink: 0;
}
.andesine-front-footer-menu h4,
.andesine-front-footer-contact h4 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3436;
  text-transform: none;
  letter-spacing: 0;
}
.andesine-front-footer-menu a {
  display: block;
  color: #4a5552;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.andesine-front-footer-menu a:hover {
  color: #a74011;
}
.andesine-front-footer-contact p {
  margin: 0 0 0.75rem;
  color: #4a5552;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.andesine-front-footer-contact p svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #2d484b;
}
.andesine-front-footer-contact a {
  color: #4a5552;
  text-decoration: none;
  transition: color 0.2s ease;
}
.andesine-front-footer-contact a:hover {
  color: #a74011;
}
.andesine-front-footer-bottom {
  background: #2d484b;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  text-align: center;
}
.andesine-front-footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.andesine-front-footer-bottom a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.andesine-front-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Producto/Accesorio detalle: grid 2 cols en desktop */
.andesine-front-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Breadcrumb */
.andesine-page-producto .andesine-breadcrumb,
.andesine-page-accesorio .andesine-breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--front-muted);
}
.andesine-breadcrumb a {
  color: var(--front-muted);
  text-decoration: none;
}
.andesine-breadcrumb a:hover {
  color: var(--front-accent);
}
.andesine-breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.7;
}
.andesine-breadcrumb-current {
  color: var(--front-text);
}

/* Galería detalle */
.andesine-detail-gallery-main {
  border-radius: var(--front-radius);
  overflow: hidden;
  background: var(--front-surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.andesine-detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.andesine-detail-no-image {
  color: var(--front-muted);
}
.andesine-detail-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.andesine-detail-thumb {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--front-card);
}
.andesine-detail-thumb.is-active {
  border-color: var(--front-accent);
}
.andesine-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info detalle */
.andesine-detail-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--front-text);
}
.andesine-detail-sku,
.andesine-detail-marca-modelo {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--front-muted);
}
.andesine-detail-resumen {
  margin: 1rem 0;
  color: var(--front-text);
  line-height: 1.6;
}
.andesine-detail-subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.andesine-detail-specs-table {
  width: 100%;
  font-size: 0.9rem;
  border-collapse: collapse;
}
.andesine-detail-specs-table th,
.andesine-detail-specs-table td {
  padding: 0.4rem 0.5rem 0.4rem 0;
  text-align: left;
  border-bottom: 1px solid var(--front-border);
}
.andesine-detail-specs-table th {
  color: var(--front-muted);
  font-weight: 500;
  width: 40%;
}
.andesine-detail-meta {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--front-muted);
}
.andesine-detail-docs {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.andesine-detail-doc-link {
  padding: 0.5rem 1rem;
  background: var(--front-card);
  border: 1px solid var(--front-border);
  border-radius: var(--front-radius);
  color: var(--front-text);
  text-decoration: none;
  font-size: 0.9rem;
}
.andesine-detail-doc-link:hover {
  border-color: var(--front-accent);
  color: var(--front-accent);
}
.andesine-detail-cotizar-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.andesine-detail-cantidad-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--front-text);
}
.andesine-detail-cantidad {
  width: 80px;
  padding: 0.5rem 0.75rem;
  background: var(--front-card);
  border: 1px solid var(--front-border);
  border-radius: var(--front-radius);
  color: var(--front-text);
  font-size: 1rem;
}
.andesine-btn-cotizar {
  padding: 0.75rem 1.5rem;
  background: #2d3436;
  color: #fff !important;
  border: none;
  border-radius: var(--front-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.andesine-btn-cotizar:hover {
  background: #133C43;
}

/* Tabs descripción/características */
.andesine-detail-tabs {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--front-border);
}
.andesine-tabs-head {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--front-border);
}
.andesine-tab-btn {
  padding: 0.6rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--front-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.andesine-tab-btn.is-active {
  color: #A74011;
  border-bottom-color: #A74011;
}
.andesine-tab-panel {
  color: var(--front-text);
  line-height: 1.6;
}
.andesine-tab-panel.is-active {
  display: block;
}

/* Relacionados: tarjetas pequeñas */
.andesine-detail-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--front-border);
}
.andesine-detail-related-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.andesine-related-categorias-wrap {
  margin-bottom: 1.25rem;
}
.andesine-related-categorias-label {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--front-text-soft, #4b5563);
}
.andesine-related-categorias-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.andesine-related-categoria-link {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #133C43;
  background: rgba(19, 60, 67, 0.08);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.andesine-related-categoria-link:hover {
  background: rgba(19, 60, 67, 0.15);
}
.andesine-related-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}
.andesine-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--front-card);
  border: 1px solid var(--front-border);
  border-radius: var(--front-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.andesine-related-card:hover {
  border-color: var(--front-accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.andesine-related-card-img {
  aspect-ratio: 1;
  background: var(--front-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.andesine-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.andesine-related-card-img span {
  font-size: 0.8rem;
  color: var(--front-muted);
}
.andesine-related-card-title {
  margin: 0;
  padding: 0.65rem 0.75rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.andesine-related-card-resumen {
  margin: 0;
  padding: 0 0.75rem 0.75rem;
  font-size: 0.8rem;
  color: var(--front-muted);
  line-height: 1.4;
}

/* Modal Cotizar - fondo blanco, colores del sitio (#133C43, #A74011) */
.andesine-modal-cotizar {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.andesine-modal-cotizar.is-open {
  visibility: visible;
  opacity: 1;
}
.andesine-modal-cotizar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 60, 67, 0.5);
}
.andesine-modal-cotizar-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(19, 60, 67, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(19, 60, 67, 0.2);
}
.andesine-modal-cotizar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(19, 60, 67, 0.15);
  background: #fff;
}
.andesine-modal-cotizar-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #133C43;
}
.andesine-modal-cotizar-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  color: #636e72;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.andesine-modal-cotizar-close:hover {
  color: #133C43;
}
.andesine-modal-cotizar-tabs {
  display: flex;
  border-bottom: 1px solid rgba(19, 60, 67, 0.15);
  background: #fff;
}
.andesine-modal-tab {
  flex: 1;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: #636e72;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.andesine-modal-tab:hover {
  color: #133C43;
}
.andesine-modal-tab.is-active {
  color: #A74011;
  border-bottom-color: #A74011;
}
.andesine-modal-cotizar-body {
  padding: 1.5rem;
  background: #fff;
}
.andesine-modal-panel {
  display: none;
}
.andesine-modal-panel.is-active {
  display: block;
}
.andesine-form-cotizar .andesine-form-group {
  margin-bottom: 1.1rem;
}
.andesine-form-cotizar label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #133C43;
}
.andesine-form-cotizar input[type="text"],
.andesine-form-cotizar input[type="email"],
.andesine-form-cotizar input[type="password"],
.andesine-form-cotizar input[type="number"],
.andesine-form-cotizar textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(19, 60, 67, 0.25);
  border-radius: 10px;
  color: #414141;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.andesine-form-cotizar input:focus,
.andesine-form-cotizar textarea:focus {
  outline: none;
  border-color: #133C43;
  box-shadow: 0 0 0 3px rgba(19, 60, 67, 0.12);
}
.andesine-form-cotizar .andesine-modal-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: #A74011;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.andesine-form-cotizar .andesine-modal-submit:hover {
  background: #133C43;
}
.andesine-modal-cotizar-hint {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #636e72;
  line-height: 1.45;
}
.andesine-form-error {
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(239, 71, 111, 0.08);
  border: 1px solid rgba(239, 71, 111, 0.25);
  border-radius: 10px;
  color: #c0392b;
  font-size: 0.9rem;
}
.andesine-modal-loader {
  text-align: center;
  padding: 2rem;
  color: #636e72;
  background: #fff;
}
.andesine-loader-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid rgba(19, 60, 67, 0.15);
  border-top-color: #A74011;
  border-radius: 50%;
  animation: andesine-spin 0.8s linear infinite;
}
@keyframes andesine-spin {
  to { transform: rotate(360deg); }
}
.andesine-modal-item-cotizar {
  margin: 0 0 1rem;
  padding: 0.6rem 0.85rem;
  background: #f8f9fa;
  border: 1px solid rgba(19, 60, 67, 0.12);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #414141;
}

@media (max-width: 768px) {
  .andesine-front-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .andesine-front-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .andesine-front-footer-brand p {
    max-width: none;
    text-align: center;
  }
  .andesine-front-footer-social {
    justify-content: center;
  }
  .andesine-front-footer-contact p {
    justify-content: center;
    flex-wrap: wrap;
  }
  .andesine-front-footer-bottom {
    flex-direction: column;
  }
  .andesine-front-detail-grid {
    grid-template-columns: 1fr;
  }
  .andesine-detail-gallery-main {
    aspect-ratio: auto;
    max-height: min(72vh, 440px);
    min-height: 220px;
  }
  .andesine-detail-gallery-main img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(72vh, 440px);
    object-fit: contain;
  }
}

/* Home: carruseles de productos (3 visibles desktop, avance 1 a 1, pausa en hover — ver home.js) */
.andesine-home-product-carousel-wrap {
  position: relative;
  width: 100%;
}
.andesine-home-product-carousel-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.andesine-home-product-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.75rem;
  transition: transform 0.45s ease;
  will-change: transform;
}
.andesine-home-section .andesine-home-product-carousel-item {
  min-width: 0;
  box-sizing: border-box;
}
/* Ancho de “ranura” fijo por breakpoint: en PC siempre 3 columnas (1 producto = 1/3 + huecos); móvil 1 columna */
@media (min-width: 901px) {
  .andesine-home-product-carousel-track .andesine-home-product-carousel-item {
    flex: 0 0 calc((100% - 2 * 1.75rem) / 3);
    max-width: calc((100% - 2 * 1.75rem) / 3);
    width: calc((100% - 2 * 1.75rem) / 3);
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .andesine-home-product-carousel-track .andesine-home-product-carousel-item {
    flex: 0 0 calc((100% - 1 * 1.75rem) / 2);
    max-width: calc((100% - 1 * 1.75rem) / 2);
    width: calc((100% - 1 * 1.75rem) / 2);
  }
}
@media (max-width: 600px) {
  .andesine-home-product-carousel-track .andesine-home-product-carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* Blog: contenido enriquecido */
.andesine-blog-post-body .andesine-front-page-content img,
.andesine-blog-post-completo img {
  max-width: 100%;
  height: auto;
}
.andesine-blog-post-body .andesine-front-page-content iframe,
.andesine-blog-post-completo iframe {
  max-width: 100%;
}

/* ========== HOME PAGE (secciones 1-9) ========== */

/* Sección 1: Hero - fondo 20260126_154108421_iOS.jpg + overlay #133c43, dos columnas */
.andesine-home-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
.andesine-home-hero-bg {
  position: absolute;
  inset: 0;
  background: #133c43;
  background-image: url('../img/20260126_154108421_iOS.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.andesine-home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #133c43;
  opacity: 0.75;
}
.andesine-home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.andesine-home-hero-left {
  max-width: 540px;
}
/* Animación de entrada textos hero */
.andesine-hero-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: andesine-hero-text-enter 0.6s ease-out forwards;
}
.andesine-home-hero-title.andesine-hero-enter { animation-delay: 0.1s; }
.andesine-home-hero-line.andesine-hero-enter { animation-delay: 0.25s; }
.andesine-home-hero-desc.andesine-hero-enter { animation-delay: 0.4s; }
.andesine-home-hero-ctas.andesine-hero-enter { animation-delay: 0.55s; }
@keyframes andesine-hero-text-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.andesine-home-hero-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
  text-align: left;
}
.andesine-home-hero-line {
  width: 120px;
  height: 3px;
  background: #A74011;
  border: 0;
  margin: 0 0 1.25rem;
}
.andesine-home-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  text-align: left;
}
.andesine-home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.andesine-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--front-radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.andesine-home-btn-primary-hero {
  background: #fff;
  color: #133c43;
  border: 2px solid #fff;
}
.andesine-home-btn-primary-hero:hover {
  background: #A74011;
  border-color: #A74011;
  color: #fff;
}
.andesine-home-btn-outline-hero {
  background: transparent;
  color: #fff;
  border: none;
}
.andesine-home-btn-outline-hero:hover {
  background: transparent;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
/* Derecha: fotos separadas, más grandes, con fade al cambiar */
.andesine-home-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.andesine-home-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(0,0,0,0.35);
  background: #0a0f0d;
  opacity: 0;
  animation: andesine-hero-card-enter 0.7s ease-out forwards;
  width: 100%;
  max-width: 480px;
}
.andesine-home-hero-card-single {
  aspect-ratio: 1/1;
  max-height: 460px;
  animation-delay: 0.2s;
}
@keyframes andesine-hero-card-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.andesine-home-hero-card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.andesine-home-hero-card-inner .andesine-hero-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
}
.andesine-home-hero-card-inner .andesine-hero-fade-img.is-visible {
  opacity: 1;
  z-index: 1;
}
@media (max-width: 900px) {
  .andesine-home-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .andesine-home-hero-left {
    max-width: none;
  }
  .andesine-home-hero-title,
  .andesine-home-hero-desc {
    text-align: center;
  }
  .andesine-home-hero-line {
    margin-left: auto;
    margin-right: auto;
  }
  .andesine-home-hero-ctas {
    justify-content: center;
  }
  .andesine-home-hero-right {
    min-height: 420px;
  }
  .andesine-home-hero-card-single {
    max-width: 360px;
    max-height: 360px;
    margin: 0 auto;
  }
}
.andesine-home-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.andesine-home-btn-outline:hover {
  background: #fff;
  color: #133c43;
}
.andesine-home-btn-whatsapp {
  background: #c45a2a;
  color: #fff;
  border: 2px solid #c45a2a;
}
.andesine-home-btn-whatsapp:hover {
  background: #a74011;
  border-color: #a74011;
  color: #fff;
}
.andesine-home-btn-primary {
  background: var(--front-accent);
  color: var(--front-bg);
  border: 2px solid var(--front-accent);
}
.andesine-home-btn-primary:hover {
  background: var(--front-accent-hover);
  border-color: var(--front-accent-hover);
  color: var(--front-bg);
}

/* Secciones 2, 3, 4: Tarjetas producto/categoría (imagen 3) */
.andesine-home-section {
  padding: 4rem 0;
}
.andesine-home-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--front-text);
  text-align: center;
  margin: 0 0 0.5rem;
}
.andesine-home-section-subtitle {
  text-align: center;
  color: var(--front-muted);
  font-size: 1rem;
  margin: 0 0 2rem;
}

/* Sección clara (blanco) - secciones 2 y 3 */
.andesine-home-section-light {
  background: #fff;
}
.andesine-home-section-light .andesine-home-section-title {
  color: #A74011;
}
.andesine-home-section-light .andesine-home-section-subtitle,
.andesine-home-section-gray .andesine-home-section-subtitle {
  color: #414141;
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

/* Sección fondo gris #efefef (ej. Equipos de Geotecnia) - mismo estilo que light */
.andesine-home-section-gray {
  background: #efefef;
}
.andesine-home-section-gray .andesine-home-section-title {
  color: #A74011;
}

/* Animación de entrada secciones (texto y tarjetas) */
.andesine-section-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: andesine-section-enter 0.55s ease-out forwards;
}
.andesine-home-section-light .andesine-home-section-title.andesine-section-enter,
.andesine-home-section-gray .andesine-home-section-title.andesine-section-enter { animation-delay: 0.05s; }
.andesine-home-section-light .andesine-home-section-subtitle.andesine-section-enter,
.andesine-home-section-gray .andesine-home-section-subtitle.andesine-section-enter { animation-delay: 0.15s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter,
.andesine-home-section-gray .andesine-home-card.andesine-section-enter { animation-fill-mode: both; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(1),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(1) { animation-delay: 0.25s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(2),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(2) { animation-delay: 0.35s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(3),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(3) { animation-delay: 0.45s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(4),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(4) { animation-delay: 0.55s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(5),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(5) { animation-delay: 0.65s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(6),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(6) { animation-delay: 0.75s; }
.andesine-home-section-light .andesine-home-card.andesine-section-enter:nth-child(n+7),
.andesine-home-section-gray .andesine-home-card.andesine-section-enter:nth-child(n+7) { animation-delay: 0.85s; }
@keyframes andesine-section-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.andesine-home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.andesine-home-card {
  background: var(--front-card);
  border: 1px solid var(--front-border);
  border-radius: var(--front-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.andesine-home-card:hover {
  border-color: rgba(61, 155, 109, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

/* Tarjetas en sección clara: blanco, sombra, colores específicos */
.andesine-home-card-light {
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.andesine-home-card-light:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: transparent;
}
.andesine-home-card-light .andesine-home-card-headline {
  color: #133C43;
}
.andesine-home-card-light .andesine-home-card-text {
  color: #414141;
}
.andesine-home-card-light .andesine-home-card-cta {
  background: #133C43;
  color: #fff;
}
.andesine-home-card-light:hover .andesine-home-card-cta {
  background: #A74011;
}

.andesine-home-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.andesine-home-card-img {
  aspect-ratio: 4/3;
  background: #fff;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border: 1px solid #EFEFEF;
}
.andesine-home-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.andesine-home-card-light .andesine-home-card-img {
  margin: 1rem 1rem 0;
  border-radius: 10px;
  border: 1px solid #EFEFEF;
}
.andesine-home-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-height: 0;
}
.andesine-home-card-headline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--front-text);
  margin: 0 0 0.5rem;
}
.andesine-home-card-text {
  font-size: 0.9rem;
  color: var(--front-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}
.andesine-home-card-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #1a3a35;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.andesine-home-card:hover .andesine-home-card-cta {
  background: #A74011;
}

/* Slider de tarjetas (más de 3) */
.andesine-home-cards-slider-wrap {
  overflow: hidden;
  position: relative;
}
.andesine-home-cards-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}
.andesine-home-cards-slider .andesine-home-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
}
.andesine-home-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.andesine-home-slider-dots .andesine-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.andesine-home-slider-dots .andesine-slider-dot.is-active {
  background: #A74011;
  transform: scale(1.2);
}
@media (max-width: 900px) {
  .andesine-home-cards-slider .andesine-home-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 220px;
  }
}
@media (max-width: 600px) {
  .andesine-home-cards-slider .andesine-home-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Sección 5: Servicios (fondo #EFEFEF, contraídas con barra vertical, hover expande) */
.andesine-home-services {
  background: #EFEFEF;
}
.andesine-home-services .andesine-home-section-title {
  color: #A74011;
}
.andesine-home-services .andesine-home-section-subtitle {
  color: #414141;
}
.andesine-home-services-grid {
  display: flex;
  gap: 12px;
  max-width: 1020px;
  margin: 0 auto;
  min-height: 480px;
}
.andesine-home-service-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  flex: 0 0 100px;
  transition: flex 0.4s ease;
  border-radius: 20px 20px 0 0;
}
.andesine-home-service-card.is-expanded {
  flex: 1 1 320px;
}
.andesine-home-service-card:hover {
  flex: 1 1 320px;
}
.andesine-home-service-card .andesine-home-service-bg {
  position: absolute;
  inset: 0;
  background-color: #133c43;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.andesine-home-service-card .andesine-home-service-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.andesine-home-service-card:hover .andesine-home-service-bg,
.andesine-home-service-card.is-expanded .andesine-home-service-bg {
  transform: scale(1.03);
}
.andesine-home-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,60,67,0.9) 0%, rgba(19,60,67,0.4) 50%, transparent 80%);
  pointer-events: none;
}
/* Barra vertical con título (estado contraído) */
.andesine-home-service-vertical-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: rgba(19,60,67,0.92);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.andesine-home-service-card.is-expanded .andesine-home-service-vertical-bar,
.andesine-home-service-card:hover .andesine-home-service-vertical-bar {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}
.andesine-home-service-title-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}
.andesine-home-service-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.andesine-home-service-card.is-expanded .andesine-home-service-content,
.andesine-home-service-card:hover .andesine-home-service-content {
  opacity: 1;
  transform: translateY(0);
}
.andesine-home-service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.andesine-home-service-content p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  line-height: 1.4;
}
.andesine-home-service-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #A74011;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.andesine-home-service-card:hover .andesine-home-service-cta {
  background: #fff;
  color: #133c43;
}
@media (max-width: 768px) {
  .andesine-home-services-grid {
    flex-direction: column;
    min-height: auto;
  }
  .andesine-home-service-card {
    flex: 1 1 auto !important;
    min-height: 320px;
  }
  .andesine-home-service-vertical-bar {
    width: 48px;
  }
}

/* Sección 6: Cómo te ayudamos */
.andesine-home-ayuda {
  background: #133C43;
}
.andesine-home-ayuda .andesine-home-ayuda-title {
  color: #fff;
}
.andesine-home-ayuda-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.andesine-home-ayuda-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.andesine-home-ayuda-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}
.andesine-home-ayuda-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.andesine-home-ayuda-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.andesine-home-ayuda-item:hover .andesine-home-ayuda-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.andesine-home-ayuda-icon svg {
  display: block;
}
.andesine-home-ayuda-text {
  line-height: 1.3;
}
@media (max-width: 768px) {
  .andesine-home-ayuda-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .andesine-home-ayuda-item {
    padding: 0.5rem 0;
  }
}

/* Sección 7: Logos (infinity slider) */
.andesine-home-logos {
  padding: 3rem 0;
  background: #ffffff;
}
.andesine-home-logos-label {
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #133C43;
  margin: 0 0 1.75rem;
  font-weight: 600;
}
.andesine-home-logos-slider-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.andesine-home-logos-slider {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  will-change: margin-left;
}
.andesine-home-logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.andesine-home-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.andesine-home-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Insignia: Distribuidores únicos MAE en Ecuador */
.andesine-home-mae-badge-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.andesine-home-mae-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 2.5rem;
  background: linear-gradient(145deg, #fff 0%, #f5f5f5 100%);
  border: 2px solid #133C43;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(19, 60, 67, 0.12), 0 0 0 1px rgba(19, 60, 67, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.andesine-home-mae-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(19, 60, 67, 0.18), 0 0 0 1px rgba(19, 60, 67, 0.08);
}
.andesine-home-mae-badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: andesine-mae-shine 4s ease-in-out infinite;
}
@keyframes andesine-mae-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.andesine-home-mae-badge-logo {
  margin-bottom: 0.75rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.andesine-home-mae-badge-logo img {
  max-height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
}
.andesine-home-mae-badge-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #133C43;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.andesine-home-mae-badge-sub {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #A74011;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (max-width: 480px) {
  .andesine-home-mae-badge {
    padding: 1.25rem 1.5rem;
  }
  .andesine-home-mae-badge-title {
    font-size: 1rem;
  }
}

/* Sección 8: Testimonios (imagen 5 - carousel) */
.andesine-home-testimonials {
  background: #133C43;
}
.andesine-home-testimonials .andesine-home-section-title {
  color: #fff;
}
.andesine-home-testimonials-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.andesine-home-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: #fff;
  color: #133C43;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.andesine-home-testimonial-nav:hover {
  background: #A74011;
  border-color: #A74011;
  color: #fff;
}
.andesine-home-testimonial-prev { left: -1rem; }
.andesine-home-testimonial-next { right: -1rem; }
.andesine-home-testimonials-track-wrap {
  overflow: hidden;
  padding: 1.25rem 3rem 2rem;
}
.andesine-home-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.45s ease;
}
.andesine-home-testimonial-card {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 200px;
  box-sizing: border-box;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(19, 60, 67, 0.12);
  border-radius: var(--front-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
}
.andesine-home-testimonial-quote {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: rgba(19, 60, 67, 0.2);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.andesine-home-testimonial-text {
  font-size: 1rem;
  color: #414141;
  line-height: 1.6;
  margin: 0 0 1rem;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
}
.andesine-home-testimonial-sep {
  border: 0;
  height: 1px;
  background: rgba(19, 60, 67, 0.15);
  margin: 0 0 1rem;
}
.andesine-home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.andesine-home-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.andesine-home-testimonial-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #133C43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.andesine-home-testimonial-author strong {
  color: #133C43;
  font-size: 0.95rem;
}
.andesine-home-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.andesine-home-testimonials-dots .andesine-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.andesine-home-testimonials-dots .andesine-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* Sección 9: Contacto */
.andesine-home-contact {
  background: #ffffff;
  padding: 4rem 0 5rem;
}
.andesine-home-contact-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  background: #fff;
  border: 2px solid rgba(19, 60, 67, 0.12);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(19, 60, 67, 0.08);
  overflow: hidden;
}
.andesine-home-contact-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #133C43 0%, #A74011 100%);
}
.andesine-home-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(19, 60, 67, 0.06);
  color: #133C43;
}
.andesine-home-contact-icon svg {
  display: block;
}
.andesine-home-contact-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-home-contact-subtitle {
  color: #414141;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.andesine-home-contact-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #A74011;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(167, 64, 17, 0.3);
}
.andesine-home-contact-btn:hover {
  background: #133C43;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 60, 67, 0.25);
}

/* ========== PÁGINA NOSOTROS ========== */
.andesine-nosotros-section {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .andesine-nosotros-section {
    padding: 2.5rem 0;
  }
}

/* Sección 1: Conócenos */
.andesine-nosotros-conocenos {
  position: relative;
  background: #133C43;
  color: #fff;
  overflow: hidden;
}
.andesine-nosotros-conocenos-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  opacity: 0.12;
  pointer-events: none;
}
.andesine-nosotros-conocenos-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .andesine-nosotros-conocenos-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.andesine-nosotros-conocenos-left {
  position: sticky;
  top: 6rem;
}
@media (max-width: 900px) {
  .andesine-nosotros-conocenos-left {
    position: static;
  }
}
.andesine-nosotros-conocenos-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.andesine-nosotros-conocenos-line {
  margin: 1rem 0 0;
  width: 60%;
  max-width: 180px;
  height: 4px;
  border: none;
  background: linear-gradient(90deg, #A74011, #e85d04);
  border-radius: 2px;
}
.andesine-nosotros-conocenos-right {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.andesine-nosotros-block {
  margin: 0;
}
.andesine-nosotros-block-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.andesine-nosotros-block-line {
  margin: 0.5rem 0 0.75rem;
  width: 48px;
  height: 3px;
  border: none;
  background: #A74011;
  border-radius: 2px;
}
.andesine-nosotros-block-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

/* Galería Nosotros - full width, bento */
.andesine-nosotros-gallery {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.andesine-nosotros-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.andesine-nosotros-gallery .andesine-gallery-item {
  aspect-ratio: 1/1;
}
@media (min-width: 900px) {
  .andesine-nosotros-gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
}
.andesine-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  display: block;
}
.andesine-gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.andesine-gallery-item:nth-child(5n+1) { transition-delay: 0ms; }
.andesine-gallery-item:nth-child(5n+2) { transition-delay: 60ms; }
.andesine-gallery-item:nth-child(5n+3) { transition-delay: 120ms; }
.andesine-gallery-item:nth-child(5n+4) { transition-delay: 180ms; }
.andesine-gallery-item:nth-child(5n+5) { transition-delay: 240ms; }
.andesine-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Nosotros galería: imágenes 1:1 sin recortar */
.andesine-nosotros-gallery .andesine-gallery-item img {
  object-fit: contain;
}
@media (max-width: 768px) {
  .andesine-nosotros-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/* Lightbox galería */
.andesine-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.andesine-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.andesine-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.andesine-gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.andesine-gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.andesine-gallery-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Sección 2: MAE (reutiliza .andesine-home-mae-badge) */
.andesine-nosotros-mae {
  background: #f8f9fa;
}
.andesine-nosotros-mae-wrap {
  display: flex;
  justify-content: center;
}

/* Sección 3: Valores */
.andesine-nosotros-valores {
  background: #EFEFEF;
  color: #2d3436;
}
.andesine-nosotros-valores-headline {
  margin: 0 0 2.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #133C43;
  text-align: center;
  letter-spacing: 0.02em;
}
.andesine-nosotros-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .andesine-nosotros-valores-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.andesine-nosotros-valor-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(19, 60, 67, 0.12);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(19, 60, 67, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  overflow: hidden;
}
.andesine-nosotros-valor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #133C43 0%, #A74011 100%);
  opacity: 1;
  transition: height 0.3s ease;
}
.andesine-nosotros-valor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(19, 60, 67, 0.14), 0 0 0 1px rgba(19, 60, 67, 0.08);
  border-color: rgba(19, 60, 67, 0.18);
}
.andesine-nosotros-valor-card:hover::before {
  height: 5px;
}
.andesine-nosotros-valor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.andesine-nosotros-valor-card:hover .andesine-nosotros-valor-icon {
  background: #A74011;
  color: #fff;
  transform: scale(1.06);
}
.andesine-nosotros-valor-icon svg {
  display: block;
}
.andesine-nosotros-valor-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #133C43;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.andesine-nosotros-valor-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #636e72;
}

/* Sección 4: Contacto y ubicación */
.andesine-nosotros-contacto-ubicacion {
  position: relative;
  background: #133C43;
  color: #fff;
  overflow: hidden;
}
.andesine-nosotros-contacto-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167, 64, 17, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.andesine-nosotros-contacto-inner {
  position: relative;
}
.andesine-nosotros-contacto-title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}
.andesine-nosotros-contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .andesine-nosotros-contacto-grid {
    grid-template-columns: 1fr;
  }
}
.andesine-nosotros-contacto-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.andesine-nosotros-contacto-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.andesine-nosotros-contacto-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}
.andesine-nosotros-contacto-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  color: #133C43;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.andesine-nosotros-contacto-icon svg {
  display: block;
}
.andesine-nosotros-contacto-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
}
.andesine-nosotros-contacto-item p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.andesine-nosotros-contacto-item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease, text-decoration-color 0.2s ease, background 0.2s ease;
}
.andesine-nosotros-contacto-item a:hover {
  color: #fff;
  text-decoration-color: #A74011;
  background: rgba(167, 64, 17, 0.25);
  padding: 0.1em 0.25em;
  margin: -0.1em -0.25em;
  border-radius: 4px;
}
.andesine-nosotros-contacto-whatsapp-wrap {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.andesine-nosotros-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  text-underline-offset: unset;
  text-decoration-color: unset;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
}
.andesine-nosotros-whatsapp-btn:hover {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.andesine-nosotros-contacto-map {
  min-height: 220px;
  align-self: stretch;
  display: flex;
}
.andesine-nosotros-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
  display: block;
}
.andesine-nosotros-map-placeholder {
  height: 100%;
  min-height: 220px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.andesine-nosotros-map-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.andesine-nosotros-map-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Sección 5: Formulario cotización */
.andesine-nosotros-formulario {
  background: #f8f9fa;
}
.andesine-nosotros-formulario-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(19, 60, 67, 0.08);
  text-align: center;
  overflow: hidden;
}
.andesine-nosotros-formulario-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #133C43 0%, #A74011 100%);
}
.andesine-nosotros-formulario-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
}
.andesine-nosotros-formulario-icon svg {
  display: block;
}
.andesine-nosotros-formulario-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-nosotros-formulario-subtitle {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: #414141;
  line-height: 1.5;
}
.andesine-nosotros-formulario-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #A74011;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(167, 64, 17, 0.3);
}
.andesine-nosotros-formulario-btn:hover {
  background: #133C43;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 60, 67, 0.25);
}

/* Sección 6: Servicios post venta */
.andesine-nosotros-postventa {
  background: #fff;
  color: #2d3436;
}
.andesine-nosotros-postventa-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.andesine-nosotros-postventa-lead {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #414141;
}
.andesine-nosotros-postventa-sub {
  margin: 0;
  font-size: 1rem;
  color: #636e72;
}
.andesine-nosotros-postventa-sub strong {
  color: #133C43;
}
.andesine-nosotros-postventa-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .andesine-nosotros-postventa-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .andesine-nosotros-postventa-cards {
    grid-template-columns: 1fr;
  }
}
.andesine-nosotros-postventa-card {
  padding: 1.75rem 1.25rem;
  background: linear-gradient(160deg, #f8f9fa 0%, #fff 100%);
  border: 1px solid rgba(19, 60, 67, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.andesine-nosotros-postventa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(19, 60, 67, 0.12);
  border-color: rgba(167, 64, 17, 0.25);
}
.andesine-nosotros-postventa-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  transition: background 0.3s ease, color 0.3s ease;
}
.andesine-nosotros-postventa-card:hover .andesine-nosotros-postventa-card-icon {
  background: #133C43;
  color: #fff;
}
.andesine-nosotros-postventa-card-icon svg {
  display: block;
}
.andesine-nosotros-postventa-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Página Nosotros: sin sección negra después de postventa (main blanco, footer pegado, sin barra inferior oscura) */
.page-nosotros .andesine-front-main {
  background: #fff;
}
.page-nosotros .andesine-front-footer {
  margin-top: 0;
}
.page-nosotros .andesine-front-footer-bottom {
  display: none;
}

/* Página Contacto: fondo blanco, colores del sitio, formulario y confirmación */
.page-contacto .andesine-front-main {
  background: #fff;
}
.page-contacto .andesine-front-footer {
  margin-top: 0;
}
.page-contacto .andesine-front-footer-bottom {
  display: none;
}
.page-contacto .andesine-contacto-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
}
.page-contacto .andesine-contacto-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #133C43;
  margin: 0 0 0.5rem;
  text-align: center;
}
.page-contacto .andesine-contacto-subtitle {
  text-align: center;
  color: #636e72;
  margin: 0 0 2rem;
  font-size: 1rem;
}
.page-contacto .andesine-contacto-form .andesine-contacto-field {
  margin-bottom: 1.25rem;
}
.page-contacto .andesine-contacto-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2d3436;
}
.page-contacto .andesine-contacto-form input,
.page-contacto .andesine-contacto-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #dfe6e9;
  border-radius: 10px;
  color: #2d3436;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.page-contacto .andesine-contacto-form input:focus,
.page-contacto .andesine-contacto-form textarea:focus {
  outline: none;
  border-color: #133C43;
}
.page-contacto .andesine-contacto-form textarea {
  resize: vertical;
  min-height: 100px;
}
.page-contacto .andesine-contacto-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: #133C43;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.page-contacto .andesine-contacto-btn:hover {
  background: #0f2f36;
}
.page-contacto .andesine-contacto-confirm {
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: none;
}
.page-contacto .andesine-contacto-confirm.is-visible {
  opacity: 1;
  display: block;
}
.page-contacto .andesine-contacto-confirm-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #25ae5f;
}
.page-contacto .andesine-contacto-confirm h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #133C43;
  margin: 0 0 0.5rem;
}
.page-contacto .andesine-contacto-confirm p {
  color: #636e72;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.page-contacto .andesine-contacto-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.page-contacto .andesine-contacto-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
}
.page-contacto .andesine-contacto-form-wrap {
  transition: opacity 0.4s ease;
}
.page-contacto .andesine-contacto-form-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.page-contacto .andesine-contacto-error {
  padding: 1rem 1.25rem;
  background: rgba(239, 71, 111, 0.1);
  border: 1px solid rgba(239, 71, 111, 0.3);
  border-radius: 10px;
  color: #c0392b;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* ========== PÁGINA SERVICIOS ========== */
.page-servicios .andesine-front-main {
  padding: 0;
}

/* Hero */
.andesine-servicios-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.andesine-servicios-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #133C43;
}
.andesine-servicios-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 60, 67, 0.92) 0%, rgba(19, 60, 67, 0.75) 55%, rgba(19, 60, 67, 0.5) 100%);
}
.andesine-servicios-hero-inner {
  position: relative;
  max-width: 720px;
}
.andesine-servicios-hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.andesine-servicios-hero-subtitle {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.andesine-servicios-hero-subtitle a {
  color: #A74011;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(167, 64, 17, 0.5);
}
.andesine-servicios-hero-subtitle a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.andesine-servicios-hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #A74011;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(167, 64, 17, 0.35);
}
.andesine-servicios-hero-cta:hover {
  background: #fff;
  color: #133C43;
  transform: translateY(-2px);
}

/* Secciones genéricas */
.andesine-servicios-section {
  padding: 4rem 0;
}
.andesine-servicios-h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.andesine-servicios-intro {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #414141;
  max-width: 720px;
}
.andesine-servicios-intro a {
  color: #133C43;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 60, 67, 0.3);
}
.andesine-servicios-intro a:hover {
  color: #A74011;
  border-bottom-color: #A74011;
}

/* 2. Problema / Solución */
.andesine-servicios-problema {
  background: #EFEFEF;
}
.andesine-servicios-problema .andesine-servicios-h2 {
  color: #133C43;
}
.andesine-servicios-problema-text {
  max-width: 720px;
}
.andesine-servicios-problema-text p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #414141;
}
.andesine-servicios-problema-text p:last-child {
  margin-bottom: 0;
}

/* 3. Servicios Especializados */
.andesine-servicios-especializados {
  background: #fff;
}
.andesine-servicios-servicio {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(19, 60, 67, 0.12);
}
.andesine-servicios-servicio:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.andesine-servicios-servicio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.andesine-servicios-servicio-grid-reverse {
  direction: rtl;
}
.andesine-servicios-servicio-grid-reverse > * {
  direction: ltr;
}
.andesine-servicios-servicio-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(19, 60, 67, 0.12);
  aspect-ratio: 4/3;
  background: #f0f2f1;
}
.andesine-servicios-servicio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.andesine-servicios-servicio-body {
  padding-top: 0.25rem;
}
.andesine-servicios-h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-servicios-servicio-tagline {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #414141;
}
.andesine-servicios-servicio-sub {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #636e72;
  font-style: italic;
}
.andesine-servicios-servicio-content {
  margin-bottom: 1.5rem;
}
.andesine-servicios-servicio-content h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #133C43;
}
.andesine-servicios-servicio-content h4:first-child {
  margin-top: 0;
}
.andesine-servicios-servicio-content p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #414141;
}
.andesine-servicios-list {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
  list-style: disc;
}
.andesine-servicios-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #414141;
}
.andesine-servicios-list a {
  color: #133C43;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 60, 67, 0.3);
}
.andesine-servicios-list a:hover {
  color: #A74011;
  border-bottom-color: #A74011;
}
.andesine-servicios-cta-wa {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #A74011;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.andesine-servicios-cta-wa:hover {
  background: #133C43;
  transform: translateY(-2px);
}
.andesine-servicios-cta-link {
  display: inline-block;
  padding: 0.6rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #133C43;
  text-decoration: none;
  border-bottom: 2px solid #133C43;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.andesine-servicios-cta-link:hover {
  color: #A74011;
  border-bottom-color: #A74011;
}
.andesine-servicios-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #133C43;
  background: transparent;
  border: 2px solid #133C43;
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.andesine-servicios-cta-btn:hover {
  color: #fff;
  background: #133C43;
  border-color: #133C43;
  transform: translateY(-2px);
}
.andesine-servicios-alquiler-title {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.28;
  max-width: 36rem;
}
.andesine-servicios-alquiler-benefits {
  margin-top: 0.25rem;
}
.andesine-servicios-alquiler-benefits li {
  margin-bottom: 0.65rem;
}
.andesine-servicios-alquiler-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 600px) {
  .andesine-servicios-alquiler-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .andesine-servicios-alquiler-ctas .andesine-servicios-cta-wa,
  .andesine-servicios-alquiler-ctas .andesine-servicios-cta-btn {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .andesine-servicios-servicio-grid,
  .andesine-servicios-servicio-grid-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .andesine-servicios-servicio-img-wrap {
    max-width: 480px;
    aspect-ratio: 16/10;
  }
}

/* 4. Por Qué Elegirnos */
.andesine-servicios-elegirnos {
  background: #133C43;
  color: #fff;
}
.andesine-servicios-elegirnos .andesine-servicios-h2 {
  color: #fff;
}
.andesine-servicios-elegirnos-lead {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.andesine-servicios-elegirnos-question {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #A74011;
}
.andesine-servicios-elegirnos-list {
  margin: 0;
  padding-left: 1.5rem;
  max-width: 720px;
}
.andesine-servicios-elegirnos-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

/* 5. Prueba Social */
.andesine-servicios-prueba {
  background: #f8f9fa;
}
.andesine-servicios-prueba-intro {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: #636e72;
}
.andesine-servicios-prueba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.andesine-servicios-prueba-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 60, 67, 0.1);
  box-shadow: 0 4px 20px rgba(19, 60, 67, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.andesine-servicios-prueba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(19, 60, 67, 0.12);
}
.andesine-servicios-prueba-img {
  width: 100%;
  min-height: 140px;
  aspect-ratio: 16 / 10;
  background-color: #e8e9ea;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}
.andesine-servicios-prueba-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5a6268;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
.andesine-servicios-prueba-img[style*="background-image"] .andesine-servicios-prueba-titulo {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.andesine-servicios-prueba-caption {
  margin: 0;
  padding: 1.25rem 1.25rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #414141;
  background: #fff;
}
@media (max-width: 768px) {
  .andesine-servicios-prueba-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. Contacto final */
.andesine-servicios-contacto {
  background: #EFEFEF;
}
.andesine-servicios-contacto-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(19, 60, 67, 0.08);
  text-align: center;
  border-top: 4px solid #A74011;
}
.andesine-servicios-contacto-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-servicios-contacto-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #414141;
}
.andesine-servicios-contacto-datos {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  text-align: left;
  display: inline-block;
}
.andesine-servicios-contacto-datos li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #414141;
}
.andesine-servicios-contacto-datos a {
  color: #133C43;
  font-weight: 600;
  text-decoration: none;
}
.andesine-servicios-contacto-datos a:hover {
  color: #A74011;
}
.andesine-servicios-contacto-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #A74011;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(167, 64, 17, 0.3);
}
.andesine-servicios-contacto-btn:hover {
  background: #133C43;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .andesine-servicios-hero {
    min-height: 60vh;
    padding: 3rem 0;
  }
  .andesine-servicios-section {
    padding: 2.5rem 0;
  }
}

/* ========== PÁGINA PRODUCTOS Y ACCESORIOS (mismo estilo: fondo blanco, sidebar, grid 3 cols) ========== */
.page-productos .andesine-front-main,
.page-accesorios .andesine-front-main,
.page-producto .andesine-front-main,
.page-accesorio .andesine-front-main {
  padding: 0;
  background: #fff;
}
body.page-productos,
body.page-accesorios,
body.page-producto,
body.page-accesorio {
  background: #fff;
}
.andesine-productos-page {
  padding: 2rem 0 4rem;
  background: #fff;
}

/* Página detalle producto/accesorio: mismo fondo blanco y colores que listado */
.andesine-detail-page-wrap {
  padding: 2rem 0 4rem;
  background: #fff;
}
.page-producto .andesine-detail-title,
.page-accesorio .andesine-detail-title {
  color: #133C43;
}
.page-producto .andesine-breadcrumb,
.page-accesorio .andesine-breadcrumb {
  color: #636e72;
}
.page-producto .andesine-breadcrumb a,
.page-accesorio .andesine-breadcrumb a {
  color: #636e72;
}
.page-producto .andesine-breadcrumb a:hover,
.page-accesorio .andesine-breadcrumb a:hover {
  color: #133C43;
}
.page-producto .andesine-breadcrumb-current,
.page-accesorio .andesine-breadcrumb-current {
  color: #414141;
}
.page-producto .andesine-detail-sku,
.page-producto .andesine-detail-marca-modelo,
.page-accesorio .andesine-detail-sku,
.page-accesorio .andesine-detail-marca-modelo {
  color: #636e72;
}
.page-producto .andesine-detail-resumen,
.page-producto .andesine-detail-info,
.page-producto .andesine-tab-panel,
.page-accesorio .andesine-detail-resumen,
.page-accesorio .andesine-detail-info,
.page-accesorio .andesine-tab-panel {
  color: #414141;
}
.page-producto .andesine-detail-subtitle,
.page-accesorio .andesine-detail-subtitle {
  color: #133C43;
}
.page-producto .andesine-detail-specs-table th,
.page-accesorio .andesine-detail-specs-table th {
  color: #636e72;
}
.page-producto .andesine-detail-specs-table td,
.page-accesorio .andesine-detail-specs-table td {
  color: #414141;
}
.page-producto .andesine-detail-meta,
.page-accesorio .andesine-detail-meta {
  color: #414141;
}
.page-producto .andesine-detail-gallery-main,
.page-accesorio .andesine-detail-gallery-main {
  background: #f8f9fa;
}
.page-producto .andesine-detail-no-image,
.page-accesorio .andesine-detail-no-image {
  color: #636e72;
}
.page-producto .andesine-detail-thumb,
.page-accesorio .andesine-detail-thumb {
  background: #f0f1f2;
}
.page-producto .andesine-detail-thumb.is-active,
.page-accesorio .andesine-detail-thumb.is-active {
  border-color: #A74011;
}
.page-producto .andesine-detail-doc-link,
.page-accesorio .andesine-detail-doc-link {
  background: #fff;
  border-color: rgba(19, 60, 67, 0.2);
  color: #414141;
}
.page-producto .andesine-detail-doc-link:hover,
.page-accesorio .andesine-detail-doc-link:hover {
  border-color: #133C43;
  color: #133C43;
}
.page-producto .andesine-tabs-head,
.page-accesorio .andesine-tabs-head {
  border-bottom-color: rgba(19, 60, 67, 0.15);
}
.page-producto .andesine-tab-btn,
.page-accesorio .andesine-tab-btn {
  color: #636e72;
}
.page-producto .andesine-tab-btn.is-active,
.page-accesorio .andesine-tab-btn.is-active {
  color: #A74011;
  border-bottom-color: #A74011;
}
.page-producto .andesine-detail-tabs,
.page-accesorio .andesine-detail-tabs {
  border-top-color: rgba(19, 60, 67, 0.15);
}
.page-producto .andesine-detail-related-title,
.page-accesorio .andesine-detail-related-title {
  color: #133C43;
}
.page-producto .andesine-related-card,
.page-accesorio .andesine-related-card {
  background: #fff;
  border-color: rgba(19, 60, 67, 0.15);
  color: #414141;
}
.page-producto .andesine-related-card:hover,
.page-accesorio .andesine-related-card:hover {
  border-color: #A74011;
  box-shadow: 0 4px 12px rgba(19, 60, 67, 0.1);
}
.page-producto .andesine-related-card-title,
.page-accesorio .andesine-related-card-title {
  color: #133C43;
}
.page-producto .andesine-related-card-resumen,
.page-accesorio .andesine-related-card-resumen {
  color: #636e72;
}
.page-producto .andesine-related-card-img,
.page-accesorio .andesine-related-card-img {
  background: #f8f9fa;
}
.page-producto .andesine-btn-cotizar,
.page-accesorio .andesine-btn-cotizar {
  background: #A74011;
  color: #fff !important;
}
.page-producto .andesine-btn-cotizar:hover,
.page-accesorio .andesine-btn-cotizar:hover {
  background: #133C43;
}

/* Bloque superior: Equipos (texto grande) + buscador ancho completo */
.andesine-productos-top {
  margin-bottom: 2rem;
}
.andesine-productos-page-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #133C43;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.andesine-productos-search-form-top {
  display: flex;
  gap: 0;
  max-width: 100%;
  border: 2px solid rgba(19, 60, 67, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.andesine-productos-search-form-top:focus-within {
  border-color: #133C43;
  box-shadow: 0 0 0 3px rgba(19, 60, 67, 0.12);
}
.andesine-productos-search-form-top .andesine-productos-search-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
}
.andesine-productos-search-form-top .andesine-productos-search-btn {
  padding: 0.9rem 1.25rem;
}

.andesine-productos-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .andesine-productos-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar: sin caja, solo enlaces */
.andesine-productos-sidebar {
  position: sticky;
  top: 6rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
@media (max-width: 900px) {
  .andesine-productos-sidebar {
    position: static;
  }
}
.andesine-productos-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
/* Misma alineación para todos: icono ancho fijo para que el texto coincida */
.andesine-productos-nav .andesine-productos-nav-icon {
  width: 20px;
  min-width: 20px;
  justify-content: flex-start;
}
.andesine-productos-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  color: #414141;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.andesine-productos-nav-item:hover {
  background: rgba(19, 60, 67, 0.06);
  color: #133C43;
}
.andesine-productos-nav-item.is-active {
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  font-weight: 600;
}
.andesine-productos-nav-all {
  font-weight: 500;
}
.andesine-productos-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ad-muted, #6b7280);
  padding: 0.6rem 0.85rem 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(19, 60, 67, 0.08);
}
.andesine-productos-nav-label:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.andesine-productos-nav-parent {
  font-weight: 500;
}
.andesine-productos-nav-child {
  font-size: 0.9rem;
}
.andesine-productos-nav-child .andesine-productos-nav-icon-sub {
  opacity: 0.7;
  width: 20px;
  min-width: 20px;
}
.andesine-productos-nav-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #133C43;
  opacity: 0.85;
}
.andesine-productos-nav-icon svg {
  display: block;
}

/* Acordeón: misma alineación que .andesine-productos-nav-item */
.andesine-productos-accordion {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.andesine-productos-accordion[open] .andesine-productos-accordion-chevron {
  transform: rotate(180deg);
}
.andesine-productos-accordion-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #133C43;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.andesine-productos-accordion-summary::-webkit-details-marker {
  display: none;
}
.andesine-productos-accordion-summary:hover {
  background: rgba(19, 60, 67, 0.06);
}
.andesine-productos-accordion-summary .andesine-productos-nav-icon {
  width: 20px;
  min-width: 20px;
}
.andesine-productos-accordion-title {
  flex: 1;
  text-align: left;
}
.andesine-productos-accordion-chevron {
  flex-shrink: 0;
  display: inline-flex;
  color: #133C43;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.andesine-productos-accordion-chevron svg {
  display: block;
}
.andesine-productos-accordion-body {
  padding: 0.2rem 0 0.4rem 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* Formulario de búsqueda (también usado arriba) */
.andesine-productos-search-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(19, 60, 67, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.andesine-productos-search-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  font-size: 0.95rem;
  color: #2d3436;
  background: transparent;
}
.andesine-productos-search-input::placeholder {
  color: #636e72;
}
.andesine-productos-search-input:focus {
  outline: none;
}
.andesine-productos-search-btn {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  border: none;
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.andesine-productos-search-btn:hover {
  background: #133C43;
  color: #fff;
}
.andesine-productos-search-btn svg {
  display: block;
}

/* Main: header + grid */
.andesine-productos-main {
  min-width: 0;
}
.andesine-productos-header {
  margin-bottom: 1.5rem;
}
.andesine-productos-h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-productos-search-term {
  font-weight: 500;
  color: #A74011;
}
.andesine-productos-count {
  margin: 0;
  font-size: 0.95rem;
  color: #636e72;
}
.andesine-productos-empty {
  padding: 2rem;
  text-align: center;
  color: #636e72;
  background: #f8f9fa;
  border-radius: 12px;
}

/* Grid de tarjetas: 3 columnas (3 tarjetas por fila) */
.andesine-productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1024px) {
  .andesine-productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.andesine-productos-card {
  margin: 0;
}
.andesine-productos-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(19, 60, 67, 0.12);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(19, 60, 67, 0.06);
}
.andesine-productos-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19, 60, 67, 0.12);
  border-color: rgba(19, 60, 67, 0.18);
}
.andesine-productos-card-link:hover .andesine-productos-card-img img {
  transform: scale(1.04);
}
.andesine-productos-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #f0f2f1;
  overflow: hidden;
}
.andesine-productos-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.andesine-productos-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #8a9a94;
}
.andesine-productos-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #133C43;
  background: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.andesine-productos-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.andesine-productos-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.35;
}
.andesine-productos-card-meta {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #636e72;
}
.andesine-productos-card-resumen {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #414141;
  line-height: 1.55;
  flex: 1;
}
.andesine-productos-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #A74011;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}
.andesine-productos-card-link:hover .andesine-productos-card-cta {
  background: #133C43;
  color: #fff;
}

/* ========== Blog: listado (título, buscador, categorías, tarjetas) ========== */
body.page-blog {
  background: #fff;
}
.andesine-blog-page {
  padding: 2rem 0 4rem;
  background: #fff;
}
.andesine-blog-top {
  margin-bottom: 2rem;
}
.andesine-blog-page-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #133C43;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.andesine-blog-search-form {
  display: flex;
  gap: 0;
  max-width: 100%;
  border: 2px solid rgba(19, 60, 67, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.andesine-blog-search-form:focus-within {
  border-color: #133C43;
  box-shadow: 0 0 0 3px rgba(19, 60, 67, 0.12);
}
.andesine-blog-search-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
  border: none;
  background: #fff;
  color: #414141;
}
.andesine-blog-search-input::placeholder {
  color: #636e72;
}
.andesine-blog-search-input:focus {
  outline: none;
}
.andesine-blog-search-btn {
  flex-shrink: 0;
  padding: 0.9rem 1.25rem;
  border: none;
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.andesine-blog-search-btn:hover {
  background: #133C43;
  color: #fff;
}
.andesine-blog-search-btn svg {
  display: block;
}
.andesine-blog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .andesine-blog-layout {
    grid-template-columns: 1fr;
  }
}
.andesine-blog-sidebar {
  position: sticky;
  top: 6rem;
}
@media (max-width: 900px) {
  .andesine-blog-sidebar {
    position: static;
  }
}
.andesine-blog-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.andesine-blog-nav .andesine-blog-nav-icon {
  width: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #133C43;
  opacity: 0.85;
}
.andesine-blog-nav-icon svg {
  display: block;
}
.andesine-blog-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  color: #414141;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.andesine-blog-nav-item:hover {
  background: rgba(19, 60, 67, 0.06);
  color: #133C43;
}
.andesine-blog-nav-item.is-active {
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
  font-weight: 600;
}
.andesine-blog-main {
  min-width: 0;
}
.andesine-blog-header {
  margin-bottom: 1.5rem;
}
.andesine-blog-h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #133C43;
  line-height: 1.3;
}
.andesine-blog-search-term {
  font-weight: 500;
  color: #A74011;
}
.andesine-blog-count {
  margin: 0;
  font-size: 0.95rem;
  color: #636e72;
}
.andesine-blog-empty {
  padding: 2rem;
  text-align: center;
  color: #636e72;
  background: #f8f9fa;
  border-radius: 12px;
}
.andesine-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1024px) {
  .andesine-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .andesine-blog-grid {
    grid-template-columns: 1fr;
  }
}
.andesine-blog-card {
  margin: 0;
}
.andesine-blog-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(19, 60, 67, 0.12);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(19, 60, 67, 0.06);
}
.andesine-blog-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19, 60, 67, 0.12);
  border-color: rgba(19, 60, 67, 0.18);
}
.andesine-blog-card-link:hover .andesine-blog-card-img img {
  transform: scale(1.04);
}
.andesine-blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  background: #f0f2f1;
  overflow: hidden;
}
.andesine-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.andesine-blog-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #8a9a94;
}
.andesine-blog-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #133C43;
  background: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.andesine-blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.andesine-blog-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #133C43;
  line-height: 1.35;
}
.andesine-blog-card-date {
  display: block;
  font-size: 0.8rem;
  color: #636e72;
  margin-bottom: 0.5rem;
}
.andesine-blog-card-resumen {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #414141;
  line-height: 1.55;
  flex: 1;
}
.andesine-blog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #A74011;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}
.andesine-blog-card-link:hover .andesine-blog-card-cta {
  background: #133C43;
  color: #fff;
}

/* ========== Blog: entrada (hero + contenido blanco + compartir) ========== */
body.page-blog-post {
  background: #fff;
}
.andesine-blog-post-page {
  padding: 0 0 4rem;
  background: #fff;
}
.andesine-blog-post-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 4rem;
  background-color: #133C43;
  background-image: var(--blog-hero-bg, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.andesine-blog-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #133C43;
  opacity: 0.5;
  z-index: 0;
}
.andesine-blog-post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blog-hero-bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(0.85);
  transform: scale(1.05);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}
.andesine-blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 60, 67, 0.85) 0%, rgba(19, 60, 67, 0.4) 50%, transparent);
  z-index: 1;
}
.andesine-blog-post-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.andesine-blog-post-hero-content {
  max-width: 42rem;
}
.andesine-blog-post-hero-cat {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A74011;
  text-decoration: none;
  transition: color 0.2s ease;
}
.andesine-blog-post-hero-cat:hover {
  color: #fff;
}
.andesine-blog-post-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.andesine-blog-post-hero-meta {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.andesine-blog-post-hero-sep {
  margin: 0 0.5rem;
  opacity: 0.7;
}
.andesine-blog-post-hero-author {
  font-style: italic;
}
.andesine-blog-post-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.andesine-blog-post-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.andesine-blog-post-hero .andesine-blog-post-share-label {
  color: rgba(255, 255, 255, 0.9);
}
.andesine-blog-post-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}
.andesine-blog-post-share-btn:hover {
  background: #A74011;
  color: #fff;
}
.andesine-blog-post-share-btn svg {
  display: block;
}
.andesine-blog-post-content-wrap {
  background: #fff;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 0 3rem;
}
.andesine-blog-post-content-inner {
  max-width: 720px;
  margin: 0 auto;
}
.andesine-blog-post-body-image {
  margin: 0 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(19, 60, 67, 0.06);
}
.andesine-blog-post-body-image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.andesine-blog-post-lead {
  margin: 0 0 2rem;
  font-size: 1.2rem;
  line-height: 1.65;
  color: #414141;
  font-weight: 500;
}
.andesine-blog-post-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #414141;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  overflow-x: hidden;
}
.andesine-blog-post-body p {
  margin: 0 0 1.25rem;
}
.andesine-blog-post-body p:last-child {
  margin-bottom: 0;
}
.andesine-blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 60, 67, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.andesine-blog-post-footer .andesine-blog-post-share-label {
  color: #636e72;
}
.andesine-blog-post-footer .andesine-blog-post-share-btn {
  background: rgba(19, 60, 67, 0.08);
  color: #133C43;
}
.andesine-blog-post-footer .andesine-blog-post-share-btn:hover {
  background: #A74011;
  color: #fff;
}
.andesine-blog-post-back {
  font-size: 0.95rem;
  font-weight: 600;
  color: #133C43;
  text-decoration: none;
  transition: color 0.2s ease;
}
.andesine-blog-post-back:hover {
  color: #A74011;
}

/* Truncado + difuminado + Leer más */
.andesine-blog-post-truncado {
  position: relative;
  max-height: none;
}
.andesine-blog-post-difuminado {
  position: relative;
  height: 120px;
  margin-top: -120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 40%, #fff 100%);
  pointer-events: none;
}
.andesine-blog-post-leer-mas-wrap {
  margin: 0 0 1.5rem;
}
.andesine-blog-post-leer-mas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #A74011;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.andesine-blog-post-leer-mas:hover {
  background: #c04d14;
}
.andesine-blog-post-archivo {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  background: rgba(19, 60, 67, 0.06);
  border-radius: 10px;
}
.andesine-blog-post-archivo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #133C43;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.andesine-blog-post-archivo-link:hover {
  color: #A74011;
}

/* Modal newsletter blog */
.andesine-blog-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.andesine-blog-modal.is-visible {
  visibility: visible;
}
.andesine-blog-modal.is-open {
  opacity: 1;
}
.andesine-blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.andesine-blog-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.andesine-blog-modal.is-open .andesine-blog-modal-dialog {
  transform: scale(1);
}
.andesine-blog-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0.5rem;
  gap: 1rem;
}
.andesine-blog-modal-title {
  margin: 0;
  font-size: 1.25rem;
  color: #133C43;
}
.andesine-blog-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #636e72;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.andesine-blog-modal-close:hover {
  color: #133C43;
}
.andesine-blog-modal-body {
  padding: 0 1.5rem 1.5rem;
}
.andesine-blog-modal-desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #636e72;
  line-height: 1.5;
}
.andesine-blog-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.andesine-blog-modal-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #133C43;
}
.andesine-blog-modal-field input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(19, 60, 67, 0.2);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.andesine-blog-modal-field input:focus {
  outline: none;
  border-color: #A74011;
}
.andesine-blog-modal-error {
  font-size: 0.9rem;
  color: #c0392b;
  padding: 0.5rem 0;
}
.andesine-blog-modal-btn {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #A74011;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.andesine-blog-modal-btn:hover:not(:disabled) {
  background: #c04d14;
}
