/* ============================================================
   CORTIROLL - DISEÑO PREMIUM UNIFICADO (CORREGIDO)
   Estilo original, fino, senior-level
   ============================================================ */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #1E293B;
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- VARIABLES GLOBALES (paleta refinada) ----- */
:root {
  --color-1: #1E3A5F;
  --color-2: #0F2847;
  --color-3: #2B4F7A;
  --color-4: #0A1628;
  --color-5: #E8ECF0;
  --color-6: #F4F7FA;
  --color-7: #FAFBFC;
  --color-8: #FFFFFF;
  --gold: #C5A55A;
  --text-dark: #1E293B;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

/* ----- UTILIDADES ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 90px 0;
}

/* Fondo claro reutilizable */
.bg-light {
  background: var(--color-6);
}

/* ----- HEADER REFINADO ----- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: height var(--transition);
}

.site-logo {
  flex: 0 0 auto;
  margin-left: -18px;
}

.site-logo img {
  height: 56px;
  width: auto;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-1);
  background: rgba(30,58,95,0.06);
}

/* Dropdown */
.main-nav .has-dropdown {
  position: relative;
}

.main-nav .has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  z-index: 20;
}

.main-nav .dropdown-wide {
  min-width: 250px;
}

.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.main-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 0;
}

/* Buscador header */
.site-search {
  position: relative;
  flex: 0 1 210px;
  min-width: 170px;
  z-index: 30;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-search input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(30,58,95,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  outline: none;
  padding: 0 16px 0 38px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-search::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid var(--color-1);
  border-radius: 50%;
  transform: translateY(-58%);
  opacity: 0.7;
  pointer-events: none;
}

.site-search::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 23px;
  width: 7px;
  height: 2px;
  background: var(--color-1);
  border-radius: 2px;
  transform: rotate(45deg);
  opacity: 0.7;
  pointer-events: none;
}

.site-search input:focus {
  background: #fff;
  border-color: rgba(30,58,95,0.42);
  box-shadow: 0 10px 24px rgba(10,22,40,0.08);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(10,22,40,0.14);
}

.search-suggestions.open {
  display: block;
}

.search-suggestion {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  padding: 11px 14px;
  text-align: left;
  transition: background 0.2s;
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion:focus,
.search-suggestion.is-active {
  background: var(--color-6);
}

.search-suggestion strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  line-height: 1.3;
}

.search-suggestion span {
  display: block;
  margin-top: 2px;
  color: #64748B;
  font-size: 12px;
  line-height: 1.35;
}

.mobile-search {
  display: none;
}

/* CTA header */
.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-1);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  margin-left: 8px;
  margin-right: -18px;
  transition: background var(--transition), transform 0.2s;
  line-height: 1.3;
}

.cta-button span {
  font-weight: 400;
  font-size: 10px;
  opacity: 0.85;
}

.cta-button:hover {
  background: var(--color-2);
  transform: translateY(-1px);
}

/* Menú móvil */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: #fff;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-nav .sub-menu {
  padding-left: 20px;
}

.mobile-nav .sub-menu a {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

.mobile-cta {
  display: block;
  margin-top: 20px;
  background: var(--color-1);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

/* ----- BANNER DE PÁGINA (imagen visible + overlay suave) ----- */
.page-banner {
  margin-top: 78px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #0A1628;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.8) 0%, rgba(30,58,95,0.5) 100%);
  z-index: 1;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 80px 28px;
}

/* ===== BOTONES UNIFICADOS (PROFESIONALES) ===== */

/* --- WhatsApp (verde compacto) --- */
.btn-whatsapp,
.btn-wa,
.btn-wa-primary,
.btn-wa-large,
.btn-wa-showroom,
.hero-card-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(37,211,102,0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

.btn-whatsapp:hover,
.btn-wa:hover,
.btn-wa-primary:hover,
.btn-wa-large:hover,
.btn-wa-showroom:hover,
.hero-card-primary:hover {
  background: #1EBF54;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(37,211,102,0.25);
}

/* Íconos dentro de botones verdes */
.btn-whatsapp svg,
.btn-wa svg,
.btn-wa-primary svg,
.btn-wa-large svg,
.btn-wa-showroom svg,
.hero-card-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Botón principal azul (ej: "VER CORTINAS ROLLER") --- */
.btn-primary,
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  background: var(--color-1);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 26px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover,
.btn-main:hover {
  background: var(--color-2);
  transform: translateY(-1px);
}

/* --- Botón secundario con borde --- */
.btn-secondary,
.hero-card-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 2px solid var(--color-1);
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 11px 24px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn-secondary:hover,
.hero-card-secondary:hover {
  background: var(--color-1);
  color: #fff;
  transform: translateY(-1px);
}

/* Versión para fondos oscuros (banners, showroom) */
.banner-actions .btn-secondary,
.showroom-actions .btn-secondary {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.banner-actions .btn-secondary:hover,
.showroom-actions .btn-secondary:hover {
  background: #fff;
  color: var(--color-4);
  border-color: #fff;
}

.banner-actions,
.showroom-actions,
.product-actions,
.double-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.product-actions,
.double-actions {
  margin-top: 24px;
}

.btn-whatsapp:focus-visible,
.btn-wa:focus-visible,
.btn-wa-primary:focus-visible,
.btn-wa-large:focus-visible,
.btn-wa-showroom:focus-visible,
.hero-card-primary:focus-visible,
.btn-primary:focus-visible,
.btn-main:focus-visible,
.btn-secondary:focus-visible,
.hero-card-secondary:focus-visible,
.btn-outline:focus-visible,
.product-page-link:focus-visible,
.link-card a:focus-visible,
.related-card a:focus-visible,
.intent-card a:focus-visible {
  outline: 3px solid rgba(197,165,90,0.42);
  outline-offset: 3px;
}

/* --- Botón outline (tarjetas de producto) --- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid var(--color-1);
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all 0.2s;
  text-align: center;
}

.btn-outline:hover {
  background: var(--color-1);
  color: #fff;
}

/* ----- HERO SLIDER CINEMÁTICO (home) ----- */
#hero {
  position: relative;
  width: 100%;
  height: 85vh;
  max-height: 700px;
  min-height: 500px;
  overflow: hidden;
  margin-top: 78px;
  cursor: grab;
  touch-action: pan-y;
}

#hero.is-dragging {
  cursor: grabbing;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.4) 55%, rgba(10,22,40,0.1) 100%);
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
  pointer-events: none;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  display: none;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 64px;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}

.slide-content-inner {
  max-width: 540px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.slide.active .slide-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.slide-logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.slide-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 32px;
}

.slide-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all var(--transition);
}

.slide-btn:hover {
  background: #fff;
  color: var(--color-4);
}

/* Controles del slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.5);
}

.slider-arrow svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #fff;
}

/* ----- HERO INTRO CARD (home) ----- */
#hero-intro {
  background: #fff;
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.hero-sales-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 24px 48px rgba(16,33,54,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transform: translateY(-40px);
}

.hero-card-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-sales-card h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--color-4);
}

.hero-sales-card p {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.hero-badge {
  background: var(--color-6);
  border-radius: 14px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

.hero-badge strong {
  display: block;
  color: var(--color-4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-card-note {
  margin-top: 18px;
  font-size: 13px;
  color: #64748B;
}

/* ----- SECCIONES COMUNES ----- */
.section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle,
.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  color: #64748B;
  font-size: 17px;
  line-height: 1.7;
}

/* ----- NOSOTROS ----- */
#nosotros {
  background: var(--color-6);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.nosotros-text .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.nosotros-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-4);
  line-height: 1.2;
  margin-bottom: 24px;
}

.nosotros-text p {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.nosotros-text .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-1);
  margin-top: 28px;
}

.icon-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.icon-box-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(30,58,95,0.15);
}

.icon-box-icon svg {
  fill: #fff;
  width: 26px;
  height: 26px;
}

.icon-box-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 10px;
}

.icon-box-content p {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

/* ----- SERVICIOS, PROCESO, FAQ ----- */
#servicios {
  background: #fff;
}

.servicios-intro {
  text-align: center;
  margin-bottom: 56px;
}

.servicios-grid,
.process-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card,
.process-card,
.faq-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--color-1);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(30,58,95,0.2);
}

.service-card:hover .service-icon svg {
  fill: #fff;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--color-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
}

.service-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}

.service-card h3,
.process-card h3,
.faq-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 14px;
}

.service-card p,
.process-card p,
.faq-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.7;
}

.process-step,
.step {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-1);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===== TARJETAS BÚSQUEDAS FRECUENTES (EFECTO HUNDIDO) ===== */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.intent-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.03),
    0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.intent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intent-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.02),
    0 24px 44px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.08);
}

.intent-card:hover::before {
  opacity: 1;
}

.intent-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.intent-card p {
  color: #64748B;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.intent-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.25s;
}

.intent-card a:hover {
  gap: 10px;
  color: var(--gold);
}

/* ----- FEATURE (Cortinas Roller) ----- */
#feature-roller {
  background: var(--color-6);
}

.feature-grid,
.intro-grid,
.detalle-grid,
.hermosas-grid,
.showroom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-text h2,
.intro-text h2,
.content-card h2,
.feature-copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 24px;
  line-height: 1.2;
}

.feature-text p,
.intro-text p,
.content-card p,
.feature-copy p {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ----- CARRUSEL DE IMÁGENES ----- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.8));
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  padding: 40px 24px 18px;
  line-height: 1.5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.25s, transform 0.25s;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn svg {
  fill: var(--color-4);
  width: 16px;
  height: 16px;
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.c-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: background 0.3s;
}

.c-dot.active {
  background: var(--color-1);
}

/* ----- PRODUCTOS (home) ----- */
#productos {
  background: #fff;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-card-body {
  padding: 28px 24px;
  text-align: center;
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 20px;
}

/* ----- TESTIMONIOS ----- */
#testimonios {
  background: var(--color-6);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.stars {
  color: #C5A55A;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-4);
}

/* ----- CONTACTO ----- */
#contacto {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  padding: 100px 0;
}

.contacto-inner {
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.contacto-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.contacto-info {
  color: #fff;
}

.contacto-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.contacto-info .logo-white {
  height: 48px;
  width: auto;
  margin-bottom: 32px;
}

.contacto-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.3;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: background 0.25s;
}

.contact-item:hover {
  background: rgba(255,255,255,0.1);
}

.contact-item svg {
  fill: var(--gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-item a {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.phone-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.contact-copy {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ----- SHOWROOM (sección oscura) ----- */
#showroom {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  padding: 90px 0;
}

.showroom-inner {
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.showroom-info h2,
.showroom-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.showroom-info p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 16px;
}

.showroom-address {
  font-style: normal;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.showroom-address svg {
  fill: var(--gold);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.showroom-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}

.showroom-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--gold);
}

/* ----- NUEVAS SECCIONES DESTACADAS (Vertical Doble / Roller Doble) ----- */
.destacado-doble {
  background: #fff;
  padding: 90px 0;
}

.destacado-doble .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.destacado-doble .texto h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-4);
  margin-bottom: 20px;
}

.destacado-doble .texto p {
  color: #475569;
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.destacado-doble .imagen img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

/* ----- FOOTER ----- */
footer {
  background: #0A1628;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 500;
}

.footer-inner a:hover {
  color: #fff;
}

/* ----- WHATSAPP FLOTANTE ----- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(37,211,102,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 16px 30px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  fill: #fff;
  width: 34px;
  height: 34px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-4);
  color: #fff;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ----- ANIMACIONES (mejoradas) ----- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.35s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.65s; }
.delay-5 { transition-delay: 0.8s; }

/* ----- BARRA SEO ----- */
#seo-bar {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.seo-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.seo-bar-item {
  background: var(--color-6);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.25s, box-shadow 0.25s;
}

.seo-bar-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.seo-bar-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 8px;
}

.seo-bar-item span {
  color: #64748B;
  font-size: 14px;
  line-height: 1.5;
}

/* ----- PROCESO ----- */
#proceso {
  background: var(--color-6);
  padding: 90px 0;
}

#proceso .process-card {
  background: #fff;
}

/* ==================== ESTILOS FALTANTES (unificación de clases) ==================== */

/* --- Clases comodín para tarjetas genéricas --- */
.benefits-grid,
.links-grid,
.cards-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card,
.link-card,
.city-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover,
.link-card:hover,
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.08);
}

.benefit-card h3,
.link-card h3,
.city-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 14px;
}

.benefit-card p,
.link-card p,
.city-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.7;
}

.link-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(30,58,95,0.22);
  border-radius: 999px;
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.link-card a:hover {
  background: var(--color-1);
  color: #fff;
  border-color: var(--color-1);
  transform: translateY(-1px);
}

/* Video destacado en paginas de producto */
.video-showcase {
  background: var(--color-6);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.video-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.video-copy h2 {
  color: var(--color-4);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.video-copy p {
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.video-frame {
  margin: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(10,22,40,0.16);
  background: var(--color-4);
}

.video-frame-vertical {
  justify-self: center;
  width: min(100%, 420px);
}

.video-frame-vertical video {
  aspect-ratio: 9 / 16;
}

.video-frame figcaption {
  color: #64748B;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}

/* Mapa y contenido en mar del plata */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.map-grid iframe {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 340px;
  border: 0;
}

/* Secciones de productos (roller, verticales, zebra) */
.product-section {
  padding: 100px 0;
}

.product-section:nth-of-type(even) {
  background: var(--color-6);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-grid.reverse {
  direction: rtl;
}

.product-grid.reverse > * {
  direction: ltr;
}

.product-text .tag {
  display: inline-block;
  background: var(--color-1);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.product-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 6px;
}

.product-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 20px;
}

.colores,
.tela-note {
  background: var(--color-7);
  border-left: 4px solid var(--color-1);
  padding: 12px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-4);
  margin-bottom: 24px;
}

.highlight,
.disponible {
  font-style: italic;
  font-weight: 700;
  color: var(--color-1);
  font-size: 16px;
  margin: 20px 0;
  text-align: center;
}

/* Diferencias header (roller) */
#diferencias-header {
  background: var(--color-4);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

#diferencias-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

#diferencias-header p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

/* Sección de diferencia (roller) */
#diferencia {
  background: #fff;
  padding: 100px 0;
}

.section-title-block {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-4);
  text-transform: uppercase;
}

.diferencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.diferencia-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tela-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 8px;
}

.tela-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tela-img img {
  width: 100%;
  object-fit: cover;
}

/* Sección related (roller) */
#related-seo {
  background: var(--color-6);
  padding: 100px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.related-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.related-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--color-4);
  margin-bottom: 14px;
}

.related-card p {
  color: #64748B;
  margin-bottom: 18px;
}

.related-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(30,58,95,0.22);
  border-radius: 999px;
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.related-card a:hover {
  background: var(--color-1);
  color: #fff;
  border-color: var(--color-1);
  transform: translateY(-1px);
}

.product-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(30,58,95,0.22);
  border-radius: 999px;
  color: var(--color-1);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 8px 18px rgba(10,22,40,0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-page-link:hover {
  background: var(--color-1);
  color: #fff;
  border-color: var(--color-1);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(30,58,95,0.14);
}

/* ----- AJUSTE DE LEGIBILIDAD -----
   El sitio prioriza textos mas comodos para lectura, especialmente en
   etiquetas, botones y parrafos secundarios que antes quedaban pequenos.
*/
body {
  font-size: 17px;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.45px;
  padding: 8px 9px;
}

.main-nav .dropdown a {
  font-size: 14px;
  padding: 11px 20px;
}

.cta-button {
  font-size: 12.5px;
  letter-spacing: 0.4px;
  padding: 10px 16px;
}

.cta-button span {
  font-size: 11.5px;
}

.mobile-nav a,
.mobile-cta {
  font-size: 16px;
}

.mobile-nav .sub-menu a {
  font-size: 15px;
}

.btn-whatsapp,
.btn-wa,
.btn-wa-primary,
.btn-wa-large,
.btn-wa-showroom,
.hero-card-primary,
.btn-primary,
.btn-main,
.btn-secondary,
.hero-card-secondary,
.slide-btn {
  font-size: 15px;
  line-height: 1.35;
}

.btn-outline,
.intent-card a,
.link-card a,
.related-card a {
  font-size: 14px;
  line-height: 1.35;
}

.slide-subtitle,
.hero-card-eyebrow,
.nosotros-text .label,
.contacto-info h3,
.showroom-card strong,
.phone-label,
.product-text .tag {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 1.4px;
}

.hero-sales-card p,
.section-subtitle,
.section-lead,
.nosotros-text p,
.feature-text p,
.intro-text p,
.content-card p,
.feature-copy p,
.destacado-doble .texto p,
.showroom-info p {
  font-size: 18px;
  line-height: 1.75;
}

.servicios-intro p,
.icon-box-content p,
.service-card p,
.process-card p,
.faq-card p,
.intent-card p,
.testimonial-text,
.contact-copy,
.contact-item a,
.benefit-card p,
.link-card p,
.city-card p,
.related-card p,
.colores,
.tela-note {
  font-size: 17px;
  line-height: 1.75;
}

.hero-badge,
.hero-card-note,
.seo-bar-item span,
.carousel-caption,
.testimonial-name,
.footer-inner,
.whatsapp-tooltip {
  font-size: 15px;
  line-height: 1.6;
}

.seo-bar-item strong,
.product-text h4,
.highlight,
.disponible {
  font-size: 17px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
  .header-inner {
    padding: 0 24px;
  }

  .site-logo,
  .cta-button {
    margin-left: 0;
    margin-right: 0;
  }

  .main-nav,
  .header-inner > .site-search,
  .cta-button {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-search {
    display: block;
    margin-bottom: 12px;
  }

  .mobile-search.site-search {
    min-width: 0;
  }

  .mobile-search .search-suggestions {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 24px;
  }

  .site-logo,
  .cta-button {
    margin-left: 0;
    margin-right: 0;
  }

  .seo-bar-grid,
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicios-grid,
  .process-grid,
  .faq-list,
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.75;
  }

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

  .mobile-nav a,
  .mobile-cta {
    font-size: 17px;
    line-height: 1.45;
  }

  .mobile-nav .sub-menu a {
    font-size: 16px;
  }

  #hero {
    height: 70vh;
    max-height: none;
  }

  .slide-content {
    padding: 0 32px;
  }

  .slide-title {
    font-size: 42px;
  }

  .hero-sales-card {
    padding: 32px 28px;
    transform: translateY(-30px);
  }

  .section-title,
  .hero-sales-card h1,
  .nosotros-text h2,
  .feature-text h2,
  .intro-text h2,
  .content-card h2,
  .feature-copy h2,
  .showroom-info h2,
  .showroom-info h3,
  .destacado-doble .texto h2 {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.18;
  }

  .slide-subtitle,
  .hero-card-eyebrow,
  .nosotros-text .label,
  .contacto-info h3,
  .showroom-card strong,
  .phone-label,
  .product-text .tag {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  .hero-sales-card p,
  .section-subtitle,
  .section-lead,
  .nosotros-text p,
  .feature-text p,
  .intro-text p,
  .content-card p,
  .feature-copy p,
  .destacado-doble .texto p,
  .showroom-info p,
  .servicios-intro p,
  .icon-box-content p,
  .service-card p,
  .process-card p,
  .faq-card p,
  .intent-card p,
  .testimonial-text,
  .contact-copy,
  .contact-item a,
  .benefit-card p,
  .link-card p,
  .city-card p,
  .related-card p,
  .colores,
  .tela-note {
    font-size: 18px;
    line-height: 1.75;
  }

  .hero-badge,
  .hero-card-note,
  .seo-bar-item span,
  .carousel-caption,
  .testimonial-name,
  .footer-inner,
  .whatsapp-tooltip {
    font-size: 16px;
    line-height: 1.65;
  }

  .btn-whatsapp,
  .btn-wa,
  .btn-wa-primary,
  .btn-wa-large,
  .btn-wa-showroom,
  .hero-card-primary,
  .btn-primary,
  .btn-main,
  .btn-secondary,
  .hero-card-secondary,
  .slide-btn,
  .btn-outline,
  .intent-card a,
  .link-card a,
  .related-card a {
    font-size: 16px;
    line-height: 1.4;
  }

  .page-banner-inner {
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 24px;
}

  .nosotros-grid,
  .feature-grid,
  .intro-grid,
  .detalle-grid,
  .hermosas-grid,
  .showroom-inner,
  .video-showcase-grid,
  .contacto-inner,
  .destacado-doble .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showroom-inner,
  .contacto-inner {
    padding: 40px 28px;
  }

  .seo-bar-grid,
  .servicios-grid,
  .process-grid,
  .productos-grid,
  .intent-grid,
  .faq-list,
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide img {
    height: 320px;
  }

  /* Ocultar flechas del slider en móvil */
  .slider-arrow {
    display: none;
  }

  /* Ajustes responsive adicionales */
  .benefits-grid,
  .links-grid,
  .cards-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .product-grid.reverse,
  .map-grid,
  .diferencia-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 18px;
  }

  #hero {
    height: 80vh;
  }

  section {
    padding: 70px 0;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .section-title,
  .hero-sales-card h1,
  .nosotros-text h2,
  .feature-text h2,
  .intro-text h2,
  .content-card h2,
  .feature-copy h2,
  .showroom-info h2,
  .showroom-info h3,
  .destacado-doble .texto h2 {
    font-size: 32px;
  }

  .hero-sales-card p,
  .section-subtitle,
  .section-lead,
  .nosotros-text p,
  .feature-text p,
  .intro-text p,
  .content-card p,
  .feature-copy p,
  .servicios-intro p,
  .icon-box-content p,
  .service-card p,
  .process-card p,
  .faq-card p,
  .intent-card p,
  .testimonial-text,
  .contact-copy,
  .contact-item a {
    font-size: 18.5px;
  }

  .hero-sales-card {
    padding: 28px 20px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .banner-actions,
  .showroom-actions,
  .product-actions,
  .double-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .banner-actions .btn-whatsapp,
  .banner-actions .btn-secondary,
  .showroom-actions .btn-whatsapp,
  .showroom-actions .btn-secondary,
  .product-actions .btn-wa,
  .product-actions .product-page-link,
  .double-actions .btn-wa,
  .double-actions .product-page-link {
    width: 100%;
  }
}
