/* AntartiClimas — Clean 2026 (Marketing/SEO-friendly) */
:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --text: #0f172a;
  --muted: #7c7c7c;
  --primary: #2c4787;
  --accent: #f97316;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(2, 6, 23, .10);
  --shadow2: 0 10px 22px rgba(2, 6, 23, .08);
  --container: 1120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ===== Typography polish (v9) ===== */
body {
  font-size: clamp(15.5px, 0.9vw + 12px, 16.5px);
  line-height: 1.75;
  letter-spacing: .1px;
}

p {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, .90)
}

.lead {
  font-size: clamp(16px, 0.8vw + 12px, 19px);
  line-height: 1.7;
  color: rgba(71, 85, 105, .92);
  max-width: 68ch;
}

.small {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(234, 234, 234, 0.92);
}

h1 {
  letter-spacing: -.03em
}

h2 {
  letter-spacing: -.02em
}

h3 {
  font-size: clamp(16px, 0.8vw + 12px, 20px);
  letter-spacing: -.015em;
}

.section-head {
  margin-bottom: 16px
}

.section-head .lead {
  margin-top: 6px
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

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

p {
  margin: 0 0 14px
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 12px
}

h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -.02em
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.01em
}

h3 {
  font-size: 18px
}

.small {
  font-size: 13px;
  color: var(--muted)
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px
}

.section {
  padding: 72px 0
}

@media (max-width: 768px) {
  .section {
    padding: 46px 0
  }
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 26, 89, .08);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  cursor: pointer;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: rgba(15, 23, 42, .14);
  color: var(--primary);
}

.btn-nav {
  background-color: #00000005 !important;
  border: 1px solid #ffffff96 !important;
}

.btn-nav:hover {
  background-color: #d2d2d24f !important;
  border: 1px solid #ffffff96 !important;
  color: #000 !important;
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
  padding: 10px 0
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center
}

.nav-links a {
  color: rgba(15, 23, 42, .78);
  font-weight: 700
}

.nav-links a:hover {
  color: rgba(15, 23, 42, 1)
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(15, 23, 42, .8);
  margin: 4px auto;
  border-radius: 2px
}

@media (max-width: 980px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  z-index: 9998;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: #0b1220;
  color: #fff;
  z-index: 9999;
  padding: 18px;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform .25s ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  color: #fff;
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700
}

.drawer a:hover {
  background: rgba(255, 255, 255, .08)
}

.drawer .drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.drawer .drawer-top img {
  height: 34px
}

.drawer .close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

/* Hero */
.hero {
  padding: 54px 0 0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(0, 26, 89, .12), transparent 60%),
    radial-gradient(700px 360px at 80% 20%, rgba(249, 115, 22, .14), transparent 55%),
    linear-gradient(#ffffff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, .70);
  font-weight: 700;
  font-size: 13px
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  height: 360px;
  width: 100%;
  object-fit: cover
}

@media (max-width: 980px) {
  .hero-card img {
    height: 260px
  }
}

/* KPIs + CTA band */
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px
}

@media (max-width: 980px) {
  .kpis {
    grid-template-columns: 1fr
  }
}

.kpi {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: var(--shadow2);
}

.kpi strong {
  font-size: 28px;
  letter-spacing: -.02em
}

.kpi span {
  color: var(--muted);
  font-weight: 700
}

.cta-band {
  background: linear-gradient(135deg, rgba(0, 26, 89, .95), rgba(0, 26, 89, .78));
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .10);
}

.cta-band p {
  color: rgba(255, 255, 255, .86)
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff
}

/* Grids + cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

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

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

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

  .grid-2 {
    grid-template-columns: 1fr
  }
}

@media (max-width: 920px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}

@media (max-width: 520px) {
  .grid-4 {
    grid-template-columns: 1fr
  }
}

.card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 26, 89, .08);
  color: var(--primary);
  font-weight: 900;
}

.strip {
  background: var(--surface);
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  opacity: .95;
}

.logo-pill {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 14px;
  padding: 10px 14px;
}

/* Service cards with image */
.service {
  padding: 0;
  overflow: hidden;
}

.service img {
  height: 250px;
  width: 100%;
  object-fit: cover
}

.service .service-body {
  padding: 16px
}

.service .service-body p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px
}

.service .service-body a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--primary);
  font-weight: 900
}

/* Forms */
.notice {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  padding: 14px 16px;
}

.notice.success {
  border-color: rgba(22, 163, 74, .35);
  background: rgba(22, 163, 74, .06)
}

.notice.error {
  border-color: rgba(220, 38, 38, .35);
  background: rgba(220, 38, 38, .06)
}

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

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

@media (max-width: 820px) {
  .form {
    grid-template-columns: 1fr
  }
}

label {
  font-weight: 700;
  font-size: 13px
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  font-size: 15px;
}

.input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, .6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .15);
}

/* Footer */
.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, .86);
  padding: 36px 0;
}

.footer a {
  color: #fff;
  opacity: .92
}

.footer a:hover {
  opacity: 1
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.footer .small {
  color: rgba(255, 255, 255, .68)
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .22);
  z-index: 60;
}

.whatsapp-float:hover {
  filter: brightness(1.03);
  background: #08451f;
}

.whatsapp-float span {
  font-weight: 900;
  font-size: 22px
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kpi strong {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .3px;
}

.kpi span {
  opacity: .8;
  font-size: .95rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    transition: none;
    transform: none;
    opacity: 1
  }

  .btn,
  .card {
    transition: none
  }
}

/* ===== Extra Animations 2026 (v2) ===== */

/* Header darker + harmony */
.nav {
  background: rgba(10, 18, 32, .86) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
}

.nav .nav-links a {
  color: rgba(255, 255, 255, .86) !important;
}

.nav .nav-links a:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.nav .brand img {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .22));
}

.nav .btn-secondary {
  background: rgba(255, 255, 255, .10) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  color: #fff !important;
}

.nav .burger {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .18) !important;
}

.nav .burger span {
  background: rgba(255, 255, 255, .92) !important;
}

/* Text micro-animations */
[data-reveal="title"] {
  transform: translateY(14px) scale(.99);
}

[data-reveal="text"] {
  transform: translateY(12px);
  transition-delay: 90ms;
}

[data-reveal="card"] {
  transform: translateY(14px);
  transition-delay: 120ms;
}

/* Stagger helper (set by JS) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger-1 {
  transition-delay: 80ms;
}

.reveal.stagger-2 {
  transition-delay: 140ms;
}

.reveal.stagger-3 {
  transition-delay: 200ms;
}

.reveal.stagger-4 {
  transition-delay: 260ms;
}

.reveal.stagger-5 {
  transition-delay: 320ms;
}

/* Subtle hover for links & icons */
a {
  transition: opacity .2s ease, transform .2s ease;
}

a:hover {
  opacity: .98;
}

/* Page transition overlay */
.page-fade {
  position: fixed;
  inset: 0;
  background: #0b1220;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity .28s ease;
}

.page-fade.is-on {
  opacity: .92;
}

/* Tabs (if used) */
.tabbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
}

.tabbar button {
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.tabbar button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.tabbar button.is-active {
  background: rgba(249, 115, 22, .12);
  border-color: rgba(249, 115, 22, .35);
}

/* Tab panels animation */
.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: panelIn .32s ease both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-fade {
    transition: none;
  }

  .tab-panel.is-active {
    animation: none;
  }
}

/* Utility */
.hide-desktop {
  display: none
}

@media (max-width: 980px) {
  .hide-desktop {
    display: inline-flex
  }
}

/* Stronger tab change animation */
.tab-panel.is-active {
  display: block;
  animation: panelIn .36s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.99);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Linktree / QR page */
.qr-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 0 44px;
}

.qr-card {
  width: min(520px, 100%);
  border-radius: 22px;
  overflow: hidden;
}

.qr-hero {
  padding: 18px 18px 10px;
  background: radial-gradient(700px 300px at 20% 0%, rgba(249, 115, 22, .22), transparent 60%),
    radial-gradient(700px 340px at 80% 10%, rgba(0, 26, 89, .25), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(246, 248, 251, 1));
}

.qr-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qr-brand img {
  height: 40px;
  width: auto
}

.qr-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.qr-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, .78);
}

.qr-links {
  padding: 14px 18px 18px;
}

.link-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  font-weight: 900;
  margin-bottom: 10px;
  box-shadow: var(--shadow2);
}

.link-btn small {
  font-weight: 700;
  color: var(--muted)
}

.link-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.qr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px
}

.qr-mini {
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  box-shadow: var(--shadow2);
}

.promo-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  box-shadow: var(--shadow2);
}

.promo-slide {
  display: none;
  padding: 16px;
}

.promo-slide.is-active {
  display: block;
  animation: panelIn .36s ease both;
}

.promo-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 10px 0 6px;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .08);
}

.promo-dot.is-active {
  background: rgba(249, 115, 22, .55);
  border-color: rgba(249, 115, 22, .75);
}

/* ===== UX Enhancements (v4) ===== */

/* Card image zoom on hover */
.service img {
  transition: transform .35s ease;
}

.service:hover img {
  transform: scale(1.04);
}


/* Carousel (lightweight, swipe-friendly) */
.carousel {
  position: relative;
  margin-top: 14px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 8px
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, .14);
  border-radius: 999px
}

.carousel .card {
  flex: 0 0 min(420px, 86%);
  scroll-snap-align: start;
}

@media (min-width: 920px) {
  .carousel .card {
    flex: 0 0 calc(50% - 7px);
  }
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex: 1
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .08);
}

.carousel-dot.is-active {
  background: rgba(249, 115, 22, .55);
  border-color: rgba(249, 115, 22, .75);
}

/* Subtle floating badge */
.badge {
  animation: badgeFloat 4.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

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

/* Make single cards feel balanced */
.single-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 14px
}

.section-head .lead {
  max-width: 70ch
}

/* ===== Logos & Floating CTA (v6) ===== */
.logo-card {
  background: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.logo-card img {
  max-height: 54px;
  width: auto;
  max-width: 100%;
  opacity: .92;
  filter: grayscale(10%);
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

.logo-card:hover img {
  transform: translateY(-1px);
  opacity: 1;
  filter: grayscale(0%);
}

/* Floating CTA */
.cta-float {
  position: fixed;
  right: 14px;
  top: 100px;
  width: min(360px, calc(100vw - 28px));
  background: linear-gradient(135deg, rgba(0, 26, 89, .98), rgba(11, 18, 32, .98));
  color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
  z-index: 100001;
  transform: translateX(110%);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .32s ease;
  overflow: hidden;
}

.cta-float.is-on {
  transform: translateX(0);
  opacity: 1;
}

.cta-float-body {
  padding: 14px 14px 16px;
}

.cta-float-title {
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 16px;
}

.cta-float-text {
  margin-top: 6px;
  opacity: .92;
  font-size: 13px;
  line-height: 1.4;
}

.cta-float-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta-float .btn {
  padding: 10px 12px;
  border-radius: 14px;
}

.cta-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cta-close:hover {
  background: rgba(255, 255, 255, .12);
}

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

/* ===== Carousels Autoplay + Subtle Controls (v7) ===== */

/* Subtle controls */
.carousel-controls {
  position: relative;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
  box-shadow: none;
  opacity: .9;
}

.carousel-btn:hover {
  opacity: 1;
  transform: none;
  box-shadow: var(--shadow2);
}

/* Edge controls for logo carousels */
.carousel-controls.edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  margin-top: 0;
}

.carousel-controls.edge .carousel-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-controls.edge .carousel-btn:first-child {
  left: 6px;
}

.carousel-controls.edge .carousel-btn:last-child {
  right: 6px;
}

.carousel-controls.edge .carousel-dots {
  display: none;
}

/* Autoplay */
.carousel-track {
  scroll-behavior: smooth;
}

/* Logos */
.logo-card {
  padding: 14px;
}

.logo-card img {
  max-height: 46px;
}

/* Consult button */
.consult-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(15, 23, 42, .04);
  color: rgba(15, 23, 42, .72);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.btn-consult:hover {
  background: rgba(15, 23, 42, .06);
}

/* ===== Carousel dots only (v9) ===== */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.carousel-btn {
  display: none !important;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .08);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.carousel-dot.is-active {
  background: rgba(249, 115, 22, .55);
  border-color: rgba(249, 115, 22, .75);
  transform: scale(1.15);
}

.carousel-track {
  padding-bottom: 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* ===== Catalog chips (v8) ===== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.172);
}

.chip {
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.is-active {
  border-color: rgba(249, 115, 22, .55);
  background: rgba(249, 115, 22, .10);
}

.catalog-card.is-focus {
  box-shadow: 0 24px 60px rgba(249, 115, 22, .12), 0 14px 30px rgba(15, 23, 42, .10);
  outline: 2px solid rgba(249, 115, 22, .22);
}

.catalog-card.is-dim {
  opacity: .55;
}

/* ===== Card polish (v9) ===== */
.card h3 {
  margin-bottom: 8px
}

.card p.small {
  margin-bottom: 0
}

.service-body p {
  margin-bottom: 0
}

.btn-link {
  font-weight: 900;
  color: rgba(0, 26, 89, .92);
}

.btn-link:hover {
  text-decoration: underline;
  color: orange;
}

/* ===== Header hamburger + announce (v10) ===== */
.burger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.burger span {
  background: rgba(255, 255, 255, .92);
}

.burger:hover {
  background: rgba(255, 255, 255, .12);
}

@media (min-width: 920px) {
  .burger {
    display: none;
  }
}

.announce {
  background: linear-gradient(135deg, rgba(249, 115, 22, .14), rgba(0, 26, 89, .10));
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.announce-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  color: rgba(15, 23, 42, .92);
  font-size: 13.5px;
}

.announce-muted {
  color: rgba(71, 85, 105, .92);
}

.announce-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
  font-weight: 900;
}

.announce-close:hover {
  background: rgba(255, 255, 255, .85);
}

/* Center small question rows */
.consult-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.consult-wrap .small {
  text-align: left;
}

@media (max-width: 640px) {
  .consult-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* Dots spacing/centering */
.carousel-controls {
  margin-top: 14px;
}

/* ===== Products layout polish (v11) ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  color: inherit;
}

.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .10);
}

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

.featured-media {
  min-height: 170px;
  background: rgba(15, 23, 42, .04);
}

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

.featured-body {
  padding: 16px 16px 14px;
}

.featured-body h3 {
  margin: 0 0 6px;
}

.featured-body .small {
  margin: 0;
}

.featured-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: rgba(0, 26, 89, .92);
}

.logo-carousel .carousel-track {
  align-items: center;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  padding: 10px;
}

.logo-card img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.02);
  opacity: .95;
}

.cta-surface {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: linear-gradient(135deg, rgba(0, 26, 89, .10), rgba(249, 115, 22, .10));
}

@media (max-width: 760px) {
  .cta-surface {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Hide carousel scrollbar (v12) ===== */
.carousel-track {
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-controls {
  margin-top: 14px;
}

/* ===== Logo link hover (v13) ===== */
.logo-link.is-link {
  cursor: pointer;
}

.logo-link.is-link:hover .logo-card {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== Links QR UI (upgrade + dark mode) ===== */
.qr-wrap {
  padding: 28px 0 90px;
}

/* Base tokens (light por defecto) */
:root {
  --qr-card-bg: rgba(255, 255, 255, .94);
  --qr-card-border: rgba(15, 23, 42, .10);
  --qr-shadow: 0 20px 60px rgba(15, 23, 42, .10);

  --qr-hero-bg: linear-gradient(135deg, rgba(0, 26, 89, .14), rgba(249, 115, 22, .10));
  --qr-hero-border: rgba(15, 23, 42, .08);

  --qr-text: rgba(15, 23, 42, .92);
  --qr-muted: rgba(71, 85, 105, .95);

  --qr-tile-bg: #fff;
  --qr-tile-border: rgba(15, 23, 42, .10);
  --qr-tile-hover-border: rgba(0, 26, 89, .18);
  --qr-tile-hover-shadow: 0 18px 40px rgba(15, 23, 42, .12);

  --qr-icon-bg: rgba(15, 23, 42, .04);
  --qr-icon-border: rgba(15, 23, 42, .08);

  --qr-pill-bg: rgba(15, 23, 42, .04);
  --qr-pill-border: rgba(15, 23, 42, .10);
  --qr-pill-text: rgba(71, 85, 105, .95);

  --qr-focus: rgba(249, 115, 22, .55);
  --qr-focus-ring: rgba(249, 115, 22, .12);
}

/* Tokens para modo oscuro (Bootstrap 5.3 usa data-bs-theme) */
html[data-bs-theme="dark"] {
  --qr-card-bg: rgba(15, 23, 42, .72);
  --qr-card-border: rgba(148, 163, 184, .18);
  --qr-shadow: 0 22px 70px rgba(0, 0, 0, .40);

  --qr-hero-bg: linear-gradient(135deg, rgba(56, 189, 248, .10), rgba(249, 115, 22, .10));
  --qr-hero-border: rgba(148, 163, 184, .16);

  --qr-text: rgba(226, 232, 240, .96);
  --qr-muted: rgba(148, 163, 184, .92);

  --qr-tile-bg: rgba(2, 6, 23, .30);
  --qr-tile-border: rgba(148, 163, 184, .18);
  --qr-tile-hover-border: rgba(56, 189, 248, .35);
  --qr-tile-hover-shadow: 0 18px 45px rgba(0, 0, 0, .40);

  --qr-icon-bg: rgba(148, 163, 184, .10);
  --qr-icon-border: rgba(148, 163, 184, .16);

  --qr-pill-bg: rgba(148, 163, 184, .10);
  --qr-pill-border: rgba(148, 163, 184, .18);
  --qr-pill-text: rgba(226, 232, 240, .90);

  --qr-focus: rgba(249, 115, 22, .65);
  --qr-focus-ring: rgba(249, 115, 22, .18);
}

/* contenedor centrado */
.qr-shell {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 14px 28px;
  display: block;
}

/* tarjeta */
.qr-card,
.qr-card.card {
  border: 1px solid var(--qr-card-border);
  border-radius: 22px;
  background: var(--qr-card-bg);
  box-shadow: var(--qr-shadow);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* HERO */
.qr-hero {
  padding: 18px 16px 14px;
  background: var(--qr-hero-bg);
  border-bottom: 1px solid var(--qr-hero-border);
}

.qr-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qr-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12.5px;
  background: rgba(255, 255, 255, .80);
  border: 1px solid var(--qr-card-border);
  color: var(--qr-text);
}

/* badge también debe oscurecer en dark */
html[data-bs-theme="dark"] .qr-badge {
  background: rgba(2, 6, 23, .35);
}

.qr-title {
  margin: 10px 0 4px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -.02em;
  color: var(--qr-text);
}

.qr-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--qr-muted);
  line-height: 1.6;
}

/* SECCIONES */
.qr-section {
  padding: 16px 16px 18px;
}

.qr-section h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 1000;
  color: var(--qr-text);
}

/* TILES */
.link-tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--qr-tile-border);
  background: var(--qr-tile-bg);
  text-decoration: none;
  color: var(--qr-text);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  min-height: 60px;
}

.link-tile:hover {
  transform: translateY(-2px);
  border-color: var(--qr-tile-hover-border);
  box-shadow: var(--qr-tile-hover-shadow);
}

/* IZQ */
.tile-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--qr-icon-bg);
  border: 1px solid var(--qr-icon-border);
  flex: 0 0 auto;
  font-size: 18px;
}

.tile-text {
  min-width: 0;
}

.tile-text strong {
  display: block;
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.2;
  color: var(--qr-text);
}

.tile-text span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--qr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DER */
.tile-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.tile-pill {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--qr-pill-border);
  background: var(--qr-pill-bg);
  color: var(--qr-pill-text);
}

.tile-arrow {
  font-weight: 1000;
  opacity: .8;
  font-size: 16px;
  color: var(--qr-muted);
}

/* disabled */
.link-tile.is-disabled {
  opacity: .55;
  pointer-events: none;
  background: rgba(255, 255, 255, .7);
}

html[data-bs-theme="dark"] .link-tile.is-disabled {
  background: rgba(2, 6, 23, .22);
}

/* FORM (si decides usarlo) */
.qr-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.qr-input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--qr-tile-border);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: var(--qr-tile-bg);
  color: var(--qr-text);
}

.qr-input:focus {
  border-color: var(--qr-focus);
  box-shadow: 0 0 0 4px var(--qr-focus-ring);
}

.qr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: none;
  font-weight: 1000;
  cursor: pointer;
  background: rgba(249, 115, 22, .95);
  color: #fff;
  transition: filter .12s ease;
}

.qr-btn:hover {
  filter: brightness(.97);
}

.qr-btn.secondary {
  background: rgba(15, 23, 42, .06);
  color: var(--qr-text);
  border: 1px solid var(--qr-tile-border);
}

html[data-bs-theme="dark"] .qr-btn.secondary {
  background: rgba(148, 163, 184, .10);
}

/* Desktop refinamiento */
@media (min-width: 992px) {
  .qr-shell {
    padding-top: 40px;
  }
}

/* ===== Desktop refinamiento ===== */
@media (min-width: 992px) {
  .qr-shell {
    padding-top: 40px;
  }
}

/* ===== Logo carousel polish + buttons (v14) ===== */
.logo-carousel .carousel-track {
  gap: 14px;
  padding: 6px 2px 2px;
}

/* uniform "chip" size for each logo */
.logo-carousel .logo-link {
  width: 176px;
}

.logo-carousel .logo-card {
  background: #fff !important;
  height: 84px;
  width: 176px;
  padding: 12px 14px;
  border-radius: 18px;
}

.logo-carousel .logo-card img {
  max-height: 52px;
  max-width: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.logo-carousel .logo-card.is-broken,
.logo-carousel .logo-card.is-broken:hover {
  background: rgba(15, 23, 42, .03);
  border-style: dashed;
}

.logo-carousel .logo-card.is-broken::after {
  content: "Logo";
  font-weight: 900;
  font-size: 12px;
  color: rgba(71, 85, 105, .85);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  color: rgba(15, 23, 42, .85);
  font-size: 22px;
  font-weight: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(0, 26, 89, .20);
}

.carousel-dots {
  margin: 0 6px;
}

@media (max-width: 520px) {
  .logo-carousel .logo-link {
    width: 150px;
  }

  .logo-carousel .logo-card {
    width: 150px;
    height: 78px;
  }

  .logo-carousel .logo-card img {
    max-width: 118px;
    max-height: 48px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

/* === Upgrade v15 — richer content blocks (corporativo moderno) === */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.callout-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.callout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .callout-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout-actions {
    justify-content: flex-start;
  }
}

.faq-card {
  border: 1px solid rgba(15, 23, 42, .08)
}

i.fa-solid,
i.fa-brands,
i.fa-regular {
  vertical-align: -0.125em;
  margin-right: 0px;
  color: var(--primary);
}

.section-soft {
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(249, 115, 22, .10), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(0, 26, 89, .10), transparent 55%),
    linear-gradient(#fff, #fff);
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.list-check li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  color: rgba(71, 85, 105, .95);
  font-size: 14px;
}

.list-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, .12);
  color: rgba(22, 163, 74, 1);
  font-weight: 900;
}

/* === Theme toggle (Bootstrap data-bs-theme) === */
.ac-theme-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1050;
  border-radius: 999px;
  padding: 10px 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.ac-theme-toggle i {
  margin-right: 0 !important;
}

/* Make icons switchable */
.ac-icon-sun,
.ac-icon-moon {
  display: inline-flex;
}

/* Improve dark appearance for custom sections/cards */
:root {
  --ac-bg: #ffffff;
  --ac-text: #a4a4a4;
  --ac-muted: #5a5a5a;
  --ac-card: #ffffff;
  --ac-border: rgba(225, 225, 225, 0.229);
}

html[data-bs-theme="dark"] {
  --ac-bg: #b2b3b4;
  --ac-text: #929292;
  --ac-muted: rgba(112, 112, 112, 0.87);
  --ac-card: rgba(199, 199, 199, 0.76);
  --ac-border: rgba(255, 255, 255, 0.709);
}

body {
  background: var(--ac-bg);
  color: var(--ac-text);
}

.card {
  background: var(--ac-card);
  border-color: var(--ac-border) !important;
}

.section-soft {
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(249, 115, 22, .10), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(0, 26, 89, .10), transparent 55%),
    linear-gradient(var(--ac-bg), var(--ac-bg));
}


/* === AntartiClimas Palette + Dark Mode (Bootstrap 5.3 data-bs-theme) === */
:root {
  /* Brand palette */
  --ac-navy: #213563;
  --ac-navy-2: #0b2a78;
  --ac-orange: #f97316;
  --ac-cyan: #06b6d4;
  --ac-slate: #0f172a;

  /* Map to Bootstrap variables (light) */
  --bs-primary: var(--ac-navy);
  --bs-secondary: #334155;
  --bs-success: #16a34a;
  --bs-info: var(--ac-cyan);
  --bs-warning: var(--ac-orange);
  --bs-danger: #ef4444;

  --bs-body-bg: #ffffff;
  --bs-body-color: #0f172a;
  --bs-tertiary-bg: #f6f8ff;
  --bs-border-color: rgba(15, 23, 42, .12);

  /* Custom surfaces */
  --ac-surface: #ffffff;
  --ac-surface-2: #f6f8ff;
  --ac-text: #0f172a;
  --ac-muted: #a1a1a1;
  --ac-card: #ffffff;
  --ac-border: rgba(15, 23, 42, .12);
  --ac-link: var(--ac-navy);
}

html[data-bs-theme="dark"] {
  /* Map to Bootstrap variables (dark) */
  --bs-primary: #7aa2ff;
  /* readable accent in dark */
  --bs-secondary: #94a3b8;
  --bs-success: #22c55e;
  --bs-info: #22d3ee;
  --bs-warning: #fb923c;
  --bs-danger: #f87171;

  --bs-body-bg: #0b1220;
  --bs-body-color: #858585;
  --bs-tertiary-bg: #111a2e;
  --bs-border-color: rgba(255, 255, 255, .14);

  --ac-surface: #0b1220;
  --ac-surface-2: #111a2e;
  --ac-text: #888888;
  --ac-muted: rgba(120, 120, 120, 0.78);
  --ac-card: rgba(255, 255, 255, .06);
  --ac-border: rgba(255, 255, 255, .14);
  --ac-link: #9bb6ff;
}

/* Global text + backgrounds */
body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
}

a {
  color: var(--ac-link);
}

a:hover {
  color: var(--bs-warning);
}

/* Improve contrast for paragraphs used across the site */
p,
.small {
  color: var(--ac-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ac-text);
}

/* Buttons to match brand */
.btn-primary {
  --bs-btn-bg: var(--ac-navy);
  --bs-btn-border-color: var(--ac-navy);
  --bs-btn-hover-bg: var(--ac-navy-2);
  --bs-btn-hover-border-color: var(--ac-navy-2);
}

html[data-bs-theme="dark"] .btn-primary {
  --bs-btn-bg: #2b4ea5;
  --bs-btn-border-color: #2b4ea5;
  --bs-btn-hover-bg: #3a60bf;
  --bs-btn-hover-border-color: #3a60bf;
}

.btn-warning {
  --bs-btn-bg: var(--ac-orange);
  --bs-btn-border-color: var(--ac-orange);
  --bs-btn-hover-bg: #ea6a10;
  --bs-btn-hover-border-color: #ea6a10;
}

/* Cards / sections used by custom layout */
.card {
  background: var(--ac-card);
  border-color: var(--ac-border) !important;
}

.section-soft {
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(249, 115, 22, .12), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(0, 26, 89, .12), transparent 55%),
    linear-gradient(var(--ac-surface), var(--ac-surface));
}

html[data-bs-theme="dark"] .section-soft {
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(249, 115, 22, .10), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(122, 162, 255, .10), transparent 55%),
    linear-gradient(var(--ac-surface), var(--ac-surface));
}

/* Chips / pills / filters (catalog) - better color */
.pill,
.chip,
.badge-soft {
  background: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-border-color);
  color: var(--ac-text);
}

html[data-bs-theme="dark"] .pill,
html[data-bs-theme="dark"] .chip,
html[data-bs-theme="dark"] .badge-soft {
  background: rgba(255, 255, 255, .06);
  color: var(--ac-text);
}

/* Theme toggle button */
.ac-theme-toggle {
  border-color: var(--bs-border-color) !important;
  background: var(--bs-tertiary-bg);
}

html[data-bs-theme="dark"] .ac-theme-toggle {
  background: rgba(255, 255, 255, .08);
}


/* === Palette override (user palette) + stronger dark mode integration === */
:root {
  --ac-p1: #264653;
  /* deep teal */
  --ac-p2: #2a9d8f;
  /* teal */
  --ac-p3: #e9c46a;
  /* sand */
  --ac-p4: #f4a261;
  /* orange */
  --ac-p5: #e76f51;
  /* coral */

  /* Map brand to Bootstrap vars */
  --bs-primary: var(--ac-p1);
  --bs-info: var(--ac-p2);
  --bs-warning: var(--ac-p4);
  --bs-danger: var(--ac-p5);

  --ac-link: var(--ac-p2);
  --ac-accent: var(--ac-p2);
}

/* Dark theme mappings */
html[data-bs-theme="dark"] {
  --bs-primary: #6bd3c6;
  /* readable teal accent */
  --bs-info: #7be3d7;
  --bs-warning: #f7b07b;
  --bs-danger: #ff9075;

  --ac-link: #7be3d7;
  --ac-accent: #7be3d7;
}

/* Links + emphasis */
a {
  color: var(--ac-link);
}

a:hover {
  color: var(--bs-warning);
}

mark,
.text-accent {
  background: rgba(233, 196, 106, .25);
  padding: .05em .25em;
  border-radius: .35rem;
}

/* Buttons: keep corporate but more color */
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: color-mix(in srgb, var(--bs-primary) 85%, #000);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--bs-primary) 85%, #000);
}

.btn-secondary {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--bs-border-color);
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-hover-bg: var(--bs-tertiary-bg);
  --bs-btn-hover-border-color: var(--bs-border-color);
}

.btn-warning {
  --bs-btn-color: #1f2937;
  --bs-btn-bg: var(--bs-warning);
  --bs-btn-border-color: var(--bs-warning);
  --bs-btn-hover-bg: color-mix(in srgb, var(--bs-warning) 85%, #000);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--bs-warning) 85%, #000);
}

html[data-bs-theme="dark"] .btn-warning {
  --bs-btn-color: #0b1220;
}

/* Hero + cards in dark mode (fix white blocks) */
.hero {
  background:
    radial-gradient(900px 420px at 20% 10%, color-mix(in srgb, var(--bs-primary) 18%, transparent), transparent 60%),
    radial-gradient(700px 360px at 80% 20%, color-mix(in srgb, var(--bs-warning) 20%, transparent), transparent 55%),
    linear-gradient(var(--ac-surface), var(--ac-surface));
}

.hero-meta {
  color: var(--ac-muted);
}

.hero-card {
  background: var(--ac-card) !important;
  border-color: var(--ac-border) !important;
}

.hero-kpis {
  background: var(--ac-card) !important;
  border-color: var(--ac-border) !important;
}

.kpi {
  background: rgba(255, 255, 255, 0.155) !important;
}

.kpi-title {
  color: var(--ac-text) !important;
}

.kpi-sub {
  color: var(--ac-muted) !important;
}

/* Catalog / tiles (fix white cards in dark) */
.catalog-card,
.logo-card {
  background: var(--ac-card) !important;
  border-color: var(--ac-border) !important;
}

.catalog-card h3,
.catalog-card h4,
.catalog-card h5 {
  color: var(--ac-text) !important;
}

.catalog-card p,
.catalog-card .small {
  color: var(--ac-muted) !important;
}

/* Section headers get subtle accent line */
.section-head h2 {
  position: relative;
}

.section-head h2:after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-warning));
  opacity: .9;
}

/* Icon color harmony */
i.fa-solid,
i.fa-brands,
i.fa-regular {
  color: var(--bs-primary) !important;
}

/* Dark section blocks readability */
.section-dark,
.dark,
.bg-dark {
  background: var(--ac-surface-2) !important;
  color: var(--ac-text) !important;
}


/* === Color accents (Serious Orange + Deep Green) === */
:root {
  /* Light mode */
  --ac-title: #d97706;
  /* naranja más fuerte y corporativo */
  --ac-cta: #fd7e07;
  /* botón primario más sólido */
  --ac-cta-text: #ffffff;
  /* texto claro para mejor contraste */
  --ac-cta-hover: #d97b00;
  /* hover más profundo */

  --ac-btn-secondary: #1f5f33;
  /* verde serio profundo */
  --ac-btn-secondary-text: #ffffff;
}

html[data-bs-theme="dark"] {
  /* Dark mode */
  --ac-title: #f59e0b;
  /* naranja más brillante para contraste */
  --ac-cta: #ea580c;
  /* botón que resalte en oscuro */
  --ac-cta-text: #0b1220;
  /* texto oscuro sobre naranja brillante */
  --ac-cta-hover: #c2410c;

  --ac-btn-secondary: #2a7f78;
  /* verde ajustado para dark */
  --ac-btn-secondary-text: #ffffff;
}

/* Titles */
h1,
h2,
.section-head h2,
.section-title {
  color: var(--ac-title) !important;
}

h3,
h4 {
  color: color-mix(in srgb, var(--ac-title) 70%, var(--bs-body-color)) !important;
}

/* Buttons (Bootstrap + custom) */
.btn-primary {
  --bs-btn-bg: var(--ac-cta) !important;
  --bs-btn-border-color: var(--ac-cta) !important;
  --bs-btn-color: var(--ac-cta-text) !important;
  --bs-btn-hover-bg: var(--ac-cta-hover) !important;
  --bs-btn-hover-border-color: var(--ac-cta-hover) !important;
  --bs-btn-hover-color: var(--ac-cta-text) !important;
  --bs-btn-active-bg: var(--ac-cta-hover) !important;
  --bs-btn-active-border-color: var(--ac-cta-hover) !important;
}

.btn-secondary {
  --bs-btn-bg: var(--ac-btn-secondary) !important;
  --bs-btn-border-color: var(--ac-btn-secondary) !important;
  --bs-btn-color: var(--ac-btn-secondary-text) !important;
  --bs-btn-hover-bg: color-mix(in srgb, var(--ac-btn-secondary) 86%, #000) !important;
  --bs-btn-hover-border-color: color-mix(in srgb, var(--ac-btn-secondary) 86%, #000) !important;
  --bs-btn-hover-color: var(--ac-btn-secondary-text) !important;
}

.btn-outline-secondary,
.btn-outline-light {
  border-color: color-mix(in srgb, var(--ac-title) 40%, var(--bs-border-color)) !important;
}

/* Link accents for better “color” without noise */
a {
  color: color-mix(in srgb, var(--ac-title) 55%, var(--bs-primary));
}

a:hover {
  color: var(--ac-title);
}

/* Theme toggle: right center, vertical, non-intrusive */
.ac-theme-toggle {
  position: fixed !important;
  right: 12px !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 1060 !important;
  border-radius: 999px !important;
  padding: 10px 12px !important;
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: center !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14) !important;
}

/* Reduce footprint on very small screens */
@media (max-width: 420px) {
  .ac-theme-toggle {
    right: 8px !important;
    padding: 8px 10px !important;
    gap: 6px !important;
  }
}


/* Avoid overlap with floating WhatsApp widget (if present) */
.whatsapp-float,
.whatsapp-widget,
.wa-widget,
.wa__btn {
  z-index: 1050;
}

/* === Bootstrap Navbar integration (mobile hamburger) === */
.ac-navbar {
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.92), rgba(10, 16, 28, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}

.ac-navbar .navbar-brand img {
  height: 60px;
  width: auto;
  display: block;
  margin-left: 1.5rem;

}

.ac-navbar .nav-link {
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
}

.ac-navbar .nav-link:hover,
.ac-navbar .nav-link:focus {
  color: var(--ac-title, #f4a261);
}

.ac-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, .22);
  border-radius: 12px;
}

.ac-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(233, 196, 106, .20);
}

/* When collapsed, add spacing */
@media (max-width: 991.98px) {
  .ac-navbar .navbar-collapse {
    padding: 12px 0 16px;
  }

  .ac-navbar .navbar-nav {
    gap: 2px;
  }

  .ac-navbar .nav-cta {
    justify-content: flex-start;
  }
}

/* Disable legacy burger/drawer visuals if any remain */
.burger,
#drawerOpen,
#drawerClose,
.drawer {
  display: none !important;
}



/* WhatsApp icon inside buttons */
.ac-wa-icon {
  width: 28px;
  height: 28px;
  margin-right: 0px;

}

.ac-wa-text {
  display: inline-block;
}




/* === Mobile Navbar CTA – Ultra Minimal Premium === */
@media (max-width: 991.98px) {
  .ac-navbar .nav-cta {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
  }

  .ac-navbar .nav-cta .btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    color: rgba(255, 255, 255, .80) !important;
    padding: 6px 18px;
    font-size: 0.95rem;
    letter-spacing: .3px;
    border-radius: 999px;
    transition: all .3s ease;
  }

  .ac-navbar .nav-cta .btn:hover {
    border-color: #f4a261 !important;
    color: #f4a261 !important;
    background: rgba(244, 162, 97, .06) !important;
    transform: translateY(-2px);
  }

  .ac-navbar .nav-cta .btn:active {
    transform: translateY(0);
    opacity: .85;
  }
}

/* ===== Bootstrap carousel "pro" ===== */
.ac-carousel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .14);
}

.ac-carousel-img {
  height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .ac-carousel-img {
    height: 320px;
  }
}

.ac-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .70) 0%,
      rgba(0, 0, 0, .25) 45%,
      rgba(0, 0, 0, .08) 100%);
}

.ac-carousel-caption {
  text-align: center;
  bottom: 18px;
}

.ac-carousel-caption h5 {
  font-weight: 1000;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.ac-carousel-caption .small {
  opacity: .92;
}

.ac-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: .6;
}

.ac-carousel .carousel-indicators .active {
  opacity: 1;
}

html[data-bs-theme="dark"] .ac-carousel {
  border-color: rgba(148, 163, 184, .18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

/* ===== Carousel Dark Mode Text Fix ===== */

html[data-bs-theme="dark"] .ac-carousel-caption h5 {
  color: #ffffff !important;
  /* Título blanco */
}

html[data-bs-theme="dark"] .ac-carousel-caption p,
html[data-bs-theme="dark"] .ac-carousel-caption .small {
  color: #d0d0d0 !important;
  /* Texto gris claro */
}


/* =========================
   FIX: No desbordes en móvil
   ========================= */
html,
body {
  width: 100%;
  overflow-x: hidden;
  /* evita scroll lateral */
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* Si algún "container" custom se pasa de ancho */
.nav-inner,
.announce-inner,
.footer-grid,
.qr-wrap,
.qr-shell,
.qr-card {
  max-width: 100%;
}

/* =========================
   QR Layout: centrado y fluido
   ========================= */
.qr-wrap {
  padding: 16px;
}

.qr-shell {
  max-width: 620px;
  /* ajusta si quieres */
  margin: 0 auto;
}

/* =========================
   Link tiles: flex sin romper en pantallas chicas
   ========================= */
.link-tiles {
  display: grid;
  /* más estable que flex para listas */
  gap: 12px;
}

.link-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  /* clave para que no empuje el layout */
}

.tile-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  /* clave */
  flex: 1;
}

.tile-text {
  min-width: 0;
  /* clave */
}

.tile-text strong,
.tile-text span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* evita que se “estire” raro */
}

.tile-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* En pantallas MUY chicas, oculta el pill para que no apriete */
@media (max-width: 360px) {
  .tile-pill {
    display: none;
  }
}

/* =========================
   Footer: que no se “rompa” en móvil
   ========================= */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

/* =========================
   Botones flotantes: evitar que causen overflow
   ========================= */
.ac-theme-toggle,
.whatsapp-float {
  max-width: calc(100vw - 24px);
}

/* =========================
   Tarjeta flotante certificaciones
   ========================= */

.cert-floating {
  position: absolute;
  bottom: 80px;
  right: 60px;
  z-index: 30;
}

.cert-card {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  border-radius: 0;
  padding: 11px;
  width: 270px;
  transition: all .3s ease;
}

[data-bs-theme="dark"] .cert-card {
  background: rgb(250, 250, 250);
  color: #fff;
}

.cert-badge {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fd950d;
}

.cert-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.cert-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all .3s ease;
}

.cert-card:hover .cert-logos img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.cert-text {
  font-size: 9px;
  line-height: 1.5;
  margin: 0;
  color: darkgrey;

}

.cert-text strong {
  font-weight: 700;
}

/* Hover elegante */
.cert-card:hover {
  transform: translateY(-6px);

}

/* 📱 Ajuste móvil */
@media (max-width: 992px) {
  .cert-floating {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 25px;
    display: flex;
    justify-content: center;
  }

  .cert-card {
    width: 100%;
    max-width: 400px;
  }
}

.ac-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ac-rating {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ac-rating-score {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.ac-stars {
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.ac-rating-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  opacity: .9;
}

.ac-rating-dot {
  opacity: .5
}

.ac-rating-link {
  text-decoration: underline;
  text-underline-offset: 3px
}

.ac-reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.ac-review {
  grid-column: span 6;
  padding: 16px;
}

@media (max-width: 992px) {
  .ac-review {
    grid-column: span 12;
  }
}

.ac-review-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.ac-review-name {
  font-weight: 800;
  margin: 0;
}

.ac-review-date {
  opacity: .75;
  font-size: 13px;
  white-space: nowrap;
}

.ac-review-stars {
  display: flex;
  gap: 3px;
  font-size: 14px;
  margin-top: 4px;
}

.ac-review-text {
  margin: 0;
  opacity: .95;
}

.ac-review-skeleton {
  padding: 16px;
  opacity: .8
}

html[data-bs-theme="dark"] .ac-review-text {
  opacity: .9
}

html[data-bs-theme="dark"] .ac-rating-meta {
  opacity: .85
}

.g-reviews {
  padding: 28px 0;
}

.g-reviews-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.g-reviews h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.g-reviews p {
  margin: 0;
  opacity: .85;
  max-width: 70ch;
}

.g-reviews-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.g-reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.g-card {
  grid-column: span 6;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

@media (max-width: 900px) {
  .g-card {
    grid-column: span 12;
  }
}

.g-card-h {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.g-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(0, 0, 0, .08);
  overflow: hidden;
  flex: 0 0 42px;
}

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

.g-who {
  min-width: 0;
}

.g-name {
  font-weight: 700;
  line-height: 1.2;
}

.g-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  opacity: .85;
  font-size: .92rem;
}

.g-time {
  white-space: nowrap;
}

.g-text {
  margin: 10px 0 0;
  line-height: 1.45;
  opacity: .95;
}

.g-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.g-badge {
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
}

.g-note {
  display: block;
  margin-top: 10px;
  opacity: .7;
}

/* Estrellitas */
.g-stars {
  display: inline-flex;
  gap: 2px;
}

.g-stars i {
  font-style: normal;
  line-height: 1;
}

/* =========================
   AntartiClimas Promo Widget
   Responsive + Dark Mode
   ========================= */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
  transform: translateZ(0);
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(0, 26, 89, .96), rgba(0, 26, 89, .74));
  color: #fff;
}

.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.ac-promo-panel {
  position: absolute;
  top: 68px;
  right: 16px;
  width: min(420px, calc(100vw - 32px));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

/* Dark mode (si usas data-bs-theme="dark") */
html[data-bs-theme="dark"] .ac-promo-panel {
  background: rgba(18, 18, 20, .92);
  border-color: rgba(255, 255, 255, .10);
}

.ac-promo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

html[data-bs-theme="dark"] .ac-promo-topbar {
  border-bottom-color: rgba(255, 255, 255, .10);
}

.ac-promo-title {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .2px;
}

html[data-bs-theme="dark"] .ac-promo-title {
  color: #fff;
}

.ac-promo-actions {
  display: flex;
  gap: 8px;
}

.ac-promo-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
  font-weight: 900;
  flex: 0 0 auto;
}

html[data-bs-theme="dark"] .ac-promo-btn {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
}

.ac-promo-btn-close {
  border-color: rgba(220, 53, 69, .25);
}

.ac-promo-body {
  padding: 14px;
}

.ac-promo-stack {
  position: relative;
  height: 320px;
  margin-bottom: 12px;
}

/* Cards apiladas (cascada) */
.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  transform: translateY(12px) scale(.985);
  opacity: .92;
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  cursor: pointer;
}

html[data-bs-theme="dark"] .ac-promo-card {
  background: rgba(30, 30, 34, .96);
  border-color: rgba(255, 255, 255, .10);
}

/* Solo mostramos 3 a la vez como cascada */
.ac-promo-card:nth-child(1) {
  z-index: 3;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ac-promo-card:nth-child(2) {
  z-index: 2;
  transform: translateY(10px) scale(.985);
  opacity: .92;
}

.ac-promo-card:nth-child(3) {
  z-index: 1;
  transform: translateY(20px) scale(.97);
  opacity: .86;
  filter: saturate(.9);
}

.ac-promo-card:nth-child(n+4) {
  z-index: 0;
  transform: translateY(30px) scale(.955);
  opacity: 0;
  pointer-events: none;
}

.ac-promo-card.is-active {
  outline: 2px solid rgba(13, 110, 253, .18);
}

/* Flyer a pantalla completa */
.ac-promo-media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* CTA */
.ac-promo-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ac-promo-wa {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(25, 135, 84, .96), rgba(25, 135, 84, .72));
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.ac-promo-hint {
  font-size: .85rem;
  opacity: .8;
}

html[data-bs-theme="dark"] .ac-promo-hint {
  color: #d0d0d0;
  opacity: 1;
}

/* =========================
   Mobile tweaks
   ========================= */
@media (max-width: 480px) {
  .ac-promo-fab {
    top: 12px;
    right: 12px;
  }

  .ac-promo-panel {
    top: 62px;
    right: 12px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .ac-promo-stack {
    height: 300px;
  }

  .ac-promo-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V1
   Responsive + Mobile Friendly
   ===================================================== */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.ac-promo-panel {
  position: absolute;
  top: 70px;
  right: 16px;
  width: min(420px, calc(100vw - 32px));
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.ac-promo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-weight: 900;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ac-promo-actions {
  display: flex;
  gap: 8px;
}

.ac-promo-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ac-promo-body {
  padding: 14px;
}

.ac-promo-stack {
  position: relative;
  height: 320px;
  margin-bottom: 12px;
}

.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  transform: translateY(12px) scale(.98);
  opacity: .9;
  transition: all .35s ease;
}

.ac-promo-card:nth-child(1) {
  z-index: 3;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ac-promo-card:nth-child(2) {
  z-index: 2;
  transform: translateY(10px) scale(.98);
}

.ac-promo-card:nth-child(3) {
  z-index: 1;
  transform: translateY(20px) scale(.96);
  opacity: .8;
}

.ac-promo-media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ac-promo-wa {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #198754, #25d366);
  color: #fff;
}

/* MOBILE */
@media (max-width:480px) {
  .ac-promo-panel {
    width: calc(100vw - 24px);
    right: 12px;
    top: 60px;
  }

  .ac-promo-stack {
    height: 280px;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V1
   Responsive + Mobile Friendly
   ===================================================== */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.ac-promo-panel {
  position: absolute;
  top: 70px;
  right: 16px;
  width: min(420px, calc(100vw - 32px));
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.ac-promo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-weight: 900;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ac-promo-actions {
  display: flex;
  gap: 8px;
}

.ac-promo-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ac-promo-body {
  padding: 14px;
}

.ac-promo-stack {
  position: relative;
  height: 320px;
  margin-bottom: 12px;
}

.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  transform: translateY(12px) scale(.98);
  opacity: .9;
  transition: all .35s ease;
}

.ac-promo-card:nth-child(1) {
  z-index: 3;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ac-promo-card:nth-child(2) {
  z-index: 2;
  transform: translateY(10px) scale(.98);
}

.ac-promo-card:nth-child(3) {
  z-index: 1;
  transform: translateY(20px) scale(.96);
  opacity: .8;
}

.ac-promo-media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ac-promo-wa {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #198754, #25d366);
  color: #fff;
}

/* MOBILE */
@media (max-width:480px) {
  .ac-promo-panel {
    width: calc(100vw - 24px);
    right: 12px;
    top: 60px;
  }

  .ac-promo-stack {
    height: 280px;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V1
   FAB (todas las páginas) + Modal (solo auto en algunas)
   Responsive + Mobile Friendly
   ===================================================== */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.ac-promo-panel {
  position: absolute;
  top: 70px;
  right: 16px;
  width: min(420px, calc(100vw - 32px));
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.ac-promo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-weight: 900;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ac-promo-actions {
  display: flex;
  gap: 8px;
}

.ac-promo-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ac-promo-body {
  padding: 14px;
}

.ac-promo-stack {
  position: relative;
  height: 320px;
  margin-bottom: 12px;
}

.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  transform: translateY(12px) scale(.98);
  opacity: .9;
  transition: all .35s ease;
}

.ac-promo-card:nth-child(1) {
  z-index: 3;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ac-promo-card:nth-child(2) {
  z-index: 2;
  transform: translateY(10px) scale(.98);
}

.ac-promo-card:nth-child(3) {
  z-index: 1;
  transform: translateY(20px) scale(.96);
  opacity: .8;
}

.ac-promo-media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ac-promo-wa {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #198754, #25d366);
  color: #fff;
}

/* MOBILE */
@media (max-width:480px) {
  .ac-promo-panel {
    width: calc(100vw - 24px);
    right: 12px;
    top: 60px;
  }

  .ac-promo-stack {
    height: 280px;
  }
}

/* ====== Promo Widget: centered + minimal overrides ====== */

/* Centra el panel en pantalla */
.ac-promo-panel {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;

  width: min(520px, calc(100vw - 28px)) !important;
  border-radius: 18px !important;

  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22) !important;

  border: 1px solid rgba(0, 0, 0, .08) !important;
  overflow: hidden !important;
}

/* Topbar minimal */
.ac-promo-topbar {
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
}

.ac-promo-actions {
  gap: 10px !important;
}

/* Botones del header más minimal */
.ac-promo-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, .10) !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: none !important;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.ac-promo-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, .03);
  border-color: rgba(0, 0, 0, .14);
}

/* Cuerpo más limpio */
.ac-promo-body {
  padding: 14px !important;
}

/* Stack un poco más “card-like” */
.ac-promo-stack {
  height: 360px !important;
  margin-bottom: 12px !important;
}

/* Cards más suaves */
.ac-promo-card {
  border-radius: 18px !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18) !important;
}

/* Flyer: que se vea completo y elegante */
.ac-promo-media {
  background-size: cover !important;
  background-position: center !important;
}

/* Botón WhatsApp: más pequeño, minimal, bordes suaves */
.ac-promo-wa {
  display: inline-flex !important;
  align-self: center !important;
  /* lo centra */
  width: 100% !important;
  /* si lo quieres “full”, déjalo así */
  max-width: 320px !important;
  /* limita el ancho para que sea más fino */
  justify-content: center !important;

  padding: .62rem .9rem !important;
  border-radius: 14px !important;

  font-size: .95rem !important;
  font-weight: 800 !important;

  background: rgba(25, 135, 84, .10) !important;
  color: #198754 !important;

  border: 1px solid rgba(25, 135, 84, .22) !important;
  box-shadow: none !important;

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.ac-promo-wa:hover {
  transform: translateY(-1px);
  background: rgba(25, 135, 84, .14) !important;
  border-color: rgba(25, 135, 84, .28) !important;
}

/* Backdrop un poco más “premium” */
.ac-promo-backdrop {
  background: rgba(0, 0, 0, .60) !important;
}

/* Mobile: ocupa mejor el alto */
@media (max-width: 480px) {
  .ac-promo-panel {
    width: calc(100vw - 22px) !important;
    border-radius: 16px !important;
  }

  .ac-promo-stack {
    height: 320px !important;
  }
}

/* =====================================================
   Promo Widget V1 - Banner style (como ejemplo 2x1)
   Pegar al FINAL del style.css
   ===================================================== */

/* backdrop más suave (opcional) */
.ac-promo-backdrop {
  background: rgba(0, 0, 0, .18) !important;
}

/* Panel como banner centrado */
.ac-promo-panel {
  position: fixed !important;
  left: 50% !important;
  top: 92px !important;
  /* altura tipo banner */
  transform: translateX(-50%) !important;

  width: min(980px, calc(100vw - 24px)) !important;
  border-radius: 22px !important;

  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Quitamos la barra superior "Promociones" */
.ac-promo-topbar {
  display: none !important;
}

/* Body sin padding extra */
.ac-promo-body {
  padding: 0 !important;
}

/* Stack como contenedor del banner */
.ac-promo-stack {
  position: relative !important;
  height: clamp(120px, 16vw, 190px) !important;
  margin: 0 !important;
}

/* Cards: ahora solo 1 visible, tipo slider (sin cascada) */
.ac-promo-card {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;

  box-shadow: 0 12px 40px rgba(0, 0, 0, .22) !important;
  border: 1px solid rgba(0, 0, 0, .06) !important;

  opacity: 0 !important;
  transform: translateY(6px) scale(.995) !important;
  transition: opacity .35s ease, transform .35s ease !important;
  cursor: pointer !important;
}

/* visible */
.ac-promo-card:nth-child(1) {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Flyer como banner completo */
.ac-promo-media {
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}

/* CTA WhatsApp: chip minimal abajo-derecha dentro del banner */
.ac-promo-wa {
  position: absolute !important;
  right: 14px !important;
  bottom: 14px !important;

  width: auto !important;
  max-width: none !important;

  padding: .52rem .78rem !important;
  border-radius: 999px !important;
  font-size: .92rem !important;
  font-weight: 900 !important;

  background: rgba(255, 255, 255, .92) !important;
  color: #0b5d38 !important;

  border: 1px solid rgba(0, 0, 0, .08) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18) !important;
  backdrop-filter: blur(10px) !important;
}

/* Hover sutil */
.ac-promo-wa:hover {
  transform: translateY(-1px) !important;
}

/* X flotante como burbuja (estilo tu ejemplo) */
.ac-promo-btn[data-ac-close] {
  position: absolute !important;
  right: -10px !important;
  top: -10px !important;

  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;

  background: rgba(255, 255, 255, .95) !important;
  border: 1px solid rgba(0, 0, 0, .10) !important;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .25) !important;
  font-size: 20px !important;
}

/* ocultar prev/next en banner (si quieres que sea solo autoplay) */
#acPromoPrev,
#acPromoNext {
  display: none !important;
}

/* Mobile: banner más arriba y más compacto */
@media (max-width: 480px) {
  .ac-promo-panel {
    top: 76px !important;
    width: calc(100vw - 18px) !important;
  }

  .ac-promo-stack {
    height: 130px !important;
  }

  .ac-promo-wa {
    right: 10px !important;
    bottom: 10px !important;
    padding: .48rem .72rem !important;
    font-size: .88rem !important;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V2 (BANNER STYLE)
   - FAB en todas las páginas
   - Modal como banner horizontal (como ejemplo 2x1)
   - Controles Prev/Next + Close visibles
   - WhatsApp compacto y minimal
   ===================================================== */

/* Botón flotante (todas las páginas) */
.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Modal container */
.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

/* Backdrop leve (banner feeling) */
.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
}

/* Panel: banner horizontal centrado */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 24px));
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

/* Topbar overlay (controles arriba-derecha dentro del banner) */
.ac-promo-topbar {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  pointer-events: none;
  /* deja pasar clicks al banner excepto botones */
}

.ac-promo-actions {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

/* Botones minimal tipo burbuja */
.ac-promo-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Body sin padding extra */
.ac-promo-body {
  padding: 0;
}

/* Banner slot */
.ac-promo-stack {
  position: relative;
  height: clamp(120px, 16vw, 190px);
  margin: 0;
}

/* Cards = slider (una visible, otras en fade) */
.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  border: 1px solid rgba(0, 0, 0, .06);
  opacity: 0;
  transform: translateY(6px) scale(.997);
  transition: opacity .28s ease, transform .28s ease;
  cursor: pointer;
}

.ac-promo-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* Imagen del flyer */
.ac-promo-media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* WhatsApp: chip minimal dentro del banner */
.ac-promo-wa {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;

  width: auto;
  padding: .52rem .78rem;
  border-radius: 999px;

  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;

  background: rgba(255, 255, 255, .92);
  color: #0b5d38;

  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.ac-promo-wa:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .ac-promo-panel {
    top: 76px;
    width: calc(100vw - 18px);
  }

  .ac-promo-stack {
    height: 130px;
  }

  .ac-promo-btn {
    width: 40px;
    height: 40px;
  }

  .ac-promo-topbar {
    right: 10px;
    top: 10px;
    gap: 8px;
  }

  .ac-promo-wa {
    right: 10px;
    bottom: 10px;
    padding: .48rem .72rem;
    font-size: .88rem;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V3 (BANNER CONTAIN)
   - Muestra 100% de la imagen (sin recorte)
   - Responsive real (desktop/móvil)
   - Prev / Next / Close conservados
   ===================================================== */

/* FAB (todas las páginas) */
.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Modal container */
.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

/* Backdrop leve */
.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
}

/* Panel como banner centrado */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 24px));
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

/* Controles flotantes */
.ac-promo-topbar {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  pointer-events: none;
}

.ac-promo-actions {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

/* Botones bubble */
.ac-promo-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Body sin padding */
.ac-promo-body {
  padding: 0;
}

/* ====== Contenedor que se adapta a la pantalla ======
   - No podemos “leer” el tamaño real del flyer en CSS,
     pero sí damos un alto responsive y dejamos la imagen en contain.
   - Esto asegura que SIEMPRE se vea completa, sin recorte. */
.ac-promo-stack {
  position: relative;
  margin: 0;
  width: 100%;
  height: clamp(140px, 22vw, 260px);
  /* alto responsive (desktop/móvil) */
}

/* Cards = slider */
.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  border: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .92);

  opacity: 0;
  transform: translateY(6px) scale(.997);
  transition: opacity .28s ease, transform .28s ease;
  cursor: pointer;
}

.ac-promo-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* Wrapper para el <img> */
.ac-promo-media {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  /* fallback si imagen tiene transparencias */
}

/* IMAGEN COMPLETA SIN RECORTE */
.ac-promo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* clave: NO recorta */
  object-position: center;
  /* centra */
  background: transparent;
}

/* WhatsApp chip */
.ac-promo-wa {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 7;

  width: auto;
  padding: .52rem .78rem;
  border-radius: 999px;

  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;

  background: rgba(255, 255, 255, .92);
  color: #0b5d38;

  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.ac-promo-wa:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .ac-promo-panel {
    top: 76px;
    width: calc(100vw - 18px);
  }

  .ac-promo-stack {
    height: clamp(120px, 34vw, 190px);
  }

  .ac-promo-btn {
    width: 40px;
    height: 40px;
  }

  .ac-promo-topbar {
    right: 10px;
    top: 10px;
    gap: 8px;
  }

  .ac-promo-wa {
    right: 10px;
    bottom: 10px;
    padding: .48rem .72rem;
    font-size: .88rem;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V4 (AUTO LAYOUT)
   - Detecta orientación del flyer
   - Horizontal => banner (cover)
   - Vertical   => poster modal centrado (contain / cover ajustable)
   - Prev/Next/Close + WhatsApp chip
   ===================================================== */

/* FAB */
.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Modal */
.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

/* Panel base (se reacomoda por modo) */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 24px));
  background: transparent;
  overflow: visible;
  z-index: 2;
}

/* Topbar (controles flotantes) */
.ac-promo-topbar {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.ac-promo-actions {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.ac-promo-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Body */
.ac-promo-body {
  padding: 0;
}

/* Stack */
.ac-promo-stack {
  position: relative;
  width: 100%;
}

/* Cards */
.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  background: #fff;

  opacity: 0;
  transform: translateY(6px) scale(.997);
  transition: opacity .28s ease, transform .28s ease;
}

.ac-promo-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* Imagen (por defecto: cover para que se vea grande) */
.ac-promo-media,
.ac-promo-img {
  width: 100%;
  height: 100%;
}

.ac-promo-img {
  display: block;
  object-fit: cover;
  /* por defecto llenamos */
  object-position: center;
}

/* WhatsApp chip */
.ac-promo-wa {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 7;

  padding: .52rem .78rem;
  border-radius: 999px;

  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;

  background: rgba(255, 255, 255, .92);
  color: #0b5d38;

  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

/* =========================
   MODO BANNER (HORIZONTAL)
   ========================= */
.ac-promo-panel.mode-banner {
  top: 92px;
  border-radius: 22px;
}

.ac-promo-panel.mode-banner .ac-promo-stack {
  height: clamp(140px, 20vw, 220px);
}

/* =========================
   MODO POSTER (VERTICAL)
   ========================= */
.ac-promo-panel.mode-poster {
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 24px));
}

.ac-promo-panel.mode-poster .ac-promo-stack {
  height: min(72vh, 720px);
  /* grande para flyers verticales */
}

.ac-promo-panel.mode-poster .ac-promo-card {
  border-radius: 22px;
}

.ac-promo-panel.mode-poster .ac-promo-img {
  object-fit: contain;
  /* en poster sí mostramos completo (sin recorte) */
  background: #fff;
}

/* Mobile */
@media (max-width: 480px) {
  .ac-promo-btn {
    width: 40px;
    height: 40px;
  }

  .ac-promo-topbar {
    right: 10px;
    top: 10px;
    gap: 8px;
  }

  .ac-promo-wa {
    right: 10px;
    bottom: 10px;
    padding: .48rem .72rem;
    font-size: .88rem;
  }

  .ac-promo-panel.mode-banner {
    top: 76px;
    width: calc(100vw - 18px);
  }

  .ac-promo-panel.mode-banner .ac-promo-stack {
    height: 140px;
  }

  .ac-promo-panel.mode-poster {
    width: calc(100vw - 18px);
  }

  .ac-promo-panel.mode-poster .ac-promo-stack {
    height: 74vh;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V5 (POSTER FIX)
   - Ideal para flyers verticales
   - Imagen grande y legible (sin blancos laterales)
   - Panel centrado (modal poster)
   - Prev/Next/Close + WhatsApp chip
   ===================================================== */

/* FAB */
.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Modal */
.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
}

/* Panel = poster centrado */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 22px));
  border-radius: 22px;
  background: transparent;
  overflow: visible;
}

/* Controles flotantes arriba derecha */
.ac-promo-topbar {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 6;
  pointer-events: none;
}

.ac-promo-actions {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.ac-promo-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Body */
.ac-promo-body {
  padding: 0;
}

/* Área del flyer: ocupa alto grande */
.ac-promo-stack {
  position: relative;
  width: 100%;
  height: min(78vh, 740px);
}

/* Cards */
.ac-promo-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);

  opacity: 0;
  transform: translateY(8px) scale(.995);
  transition: opacity .28s ease, transform .28s ease;
}

.ac-promo-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* Imagen grande y sin deformar */
.ac-promo-media,
.ac-promo-img {
  width: 100%;
  height: 100%;
}

.ac-promo-img {
  display: block;
  object-fit: contain;
  /* no deforma */
  object-position: center;
  background: #fff;
}

/* WhatsApp chip (más discreto) */
.ac-promo-wa {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 7;

  padding: .52rem .78rem;
  border-radius: 999px;

  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;

  background: rgba(255, 255, 255, .92);
  color: #0b5d38;

  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

/* Mobile */
@media (max-width: 480px) {
  .ac-promo-panel {
    width: calc(100vw - 16px);
  }

  .ac-promo-stack {
    height: 82vh;
  }

  .ac-promo-btn {
    width: 40px;
    height: 40px;
  }

  .ac-promo-actions {
    gap: 8px;
  }

  .ac-promo-wa {
    right: 10px;
    bottom: 10px;
    padding: .48rem .72rem;
    font-size: .88rem;
  }
}

/* =====================================================
   AntartiClimas Promo Widget V6 (FULL IMAGE)
   - Popup = solo imagen al 100% (sin blancos)
   - Close redondo arriba-derecha
   - WhatsApp vinculado a promo activa
   ===================================================== */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
  user-select: none;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

/* Contenedor del popup */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100vw - 20px));
  height: min(82vh, 820px);
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .35);
}

/* Zona de la imagen al 100% */
.ac-promo-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMAGEN: ocupa todo el popup */
.ac-promo-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* llena sin blancos */
  object-position: center;
  /* centra */
}

/* Botón cerrar redondo arriba derecha */
.ac-promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

/* WhatsApp chip abajo derecha */
.ac-promo-wa {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
  font-weight: 900;
  text-decoration: none;
  color: #0b5d38;
  z-index: 5;
  backdrop-filter: blur(10px);
}

/* Prev/Next minimal (opcional) */
.ac-promo-nav {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.ac-promo-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
  font-weight: 900;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 480px) {
  .ac-promo-panel {
    width: calc(100vw - 14px);
    height: 84vh;
    border-radius: 18px;
  }

  .ac-promo-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .ac-promo-wa {
    padding: .5rem .78rem;
    font-size: .92rem;
  }
}

/* ===============================
   AntartiClimas Promo V7
   Imagen completa centrada (40%)
   =============================== */

.ac-promo-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  cursor: pointer;
}

.ac-promo-fab.is-hidden {
  display: none;
}

.ac-promo-fab-badge {
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #001a59, #0033aa);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* Modal */
.ac-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ac-promo-modal.is-open {
  display: block;
}

.ac-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

/* Contenedor invisible (sin card) */
.ac-promo-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
  /* 👈 40% del ancho pantalla */
  max-width: 400px;
  min-width: 260px;
}

/* Imagen sola */
.ac-promo-panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

/* Botón cerrar */
.ac-promo-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background:#ff9075;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

/* Botón WhatsApp */
.ac-promo-wa {
  position: absolute;
  bottom: -18px;
  right: 0;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  font-weight: 900;
  text-decoration: none;
  color: #0b5d38;
}

/* Mobile */
@media (max-width: 768px) {
  .ac-promo-panel {
    width: 70vw;
    /* más grande en móvil */
  }
}

@media (max-width: 480px) {
  .ac-promo-panel {
    width: 85vw;
  }
}