/* =========================================================
   style-empast.css
   Landing "Ventiladores ebm-papst Perú" — Hero + Navbar
   Incluye: variables, tipografía, botones, animaciones, A11y
   ========================================================= */

/* --------- Variables de diseño --------- */
:root{
  --empast-bg: #0c0f13;                 /* fondo hero */
  --empast-surface: #10151c;            /* superficies oscuras */
  --empast-card: #141b24;

  --empast-brand: #1c379b;              /* azul ebm-papst */
  --empast-brand-600: #0285c6;
  --empast-brand-700: #026da2;

  --empast-accent: #2ad67b;             /* acento (pulse badge) */
  --empast-text: #e7edf6;
  --empast-text-muted: #c6cfda;
  --empast-outline: #8acbff;

  --empast-ghost: rgba(231, 237, 246, 0.12);
  --empast-ghost-border: rgba(231, 237, 246, 0.35);

  --empast-shadow: 0 10px 25px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.25);

  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --step-1: clamp(1.8rem, 1.2rem + 2.2vw, 3.2rem); /* h1 hero */
  --step-0: clamp(1.05rem, .9rem + .6vw, 1.25rem); /* base copy */
  --step--1: clamp(.9rem, .85rem + .2vw, 1rem);    /* micro */
}

/* --------- Reset fino y tipografía --------- */
html { scroll-behavior: smooth; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 1rem;
  line-height: 1.55;
  color: var(--empast-text);
  background: #0b0e12;
  overflow-x: hidden;
}

/* Mejores focos para accesibilidad */
:focus-visible{
  outline: 3px solid var(--empast-outline);
  outline-offset: 2px;
  border-radius: .25rem;
}

/* --------- Utilidades --------- */
.min-vh-70 { min-height: 70vh; }
/*.shadow-empast { box-shadow: var(--empast-shadow); }*/
.text-empast-emph { color: var(--empast-brand); }

/* --------- Navbar --------- */
.nav-empast{
  background: #ffffff;
  backdrop-filter: saturate(130%) blur(6px);
}
.nav-empast .navbar-brand{
  font-weight: 700;
  letter-spacing: .2px;
}
.nav-empast .nav-link{
  color: #1b2330;
  font-weight: 600;
  padding: .75rem 1rem;
  border-radius: .6rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-empast .nav-link:hover{
  background: rgba(3,155,229,.08);
  color: var(--empast-brand);
  transform: translateY(-1px);
}

/* --------- Botones --------- */
.btn-empast-primary{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--empast-brand);
  --bs-btn-border-color: var(--empast-brand);
  --bs-btn-hover-bg: var(--empast-brand-600);
  --bs-btn-hover-border-color: var(--empast-brand-600);
  --bs-btn-focus-shadow-rgb: 2,155,229;
  --bs-btn-active-bg: var(--empast-brand-700);
  --bs-btn-active-border-color: var(--empast-brand-700);
}
.btn-empast-ghost{
  color: var(--empast-text);
  background: var(--empast-ghost);
  border: 1px solid var(--empast-ghost-border);
  border-radius: .75rem;
  padding: .6rem 1.1rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-empast-ghost:hover{
  background: rgba(231,237,246,.18);
  border-color: rgba(231,237,246,.55);
  transform: translateY(-1px);
}

/* --------- Links --------- */
.link-empast{
  color: var(--empast-text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(231,237,246,.5);
  transition: color .2s ease, border-color .2s ease;
}
.link-empast:hover{
  color: var(--empast-brand);
  border-color: var(--empast-brand);
}

/* --------- HERO --------- */
.hero-empast{
  background: var(--empast-bg);
  position: relative;
  isolation: isolate;
}
.hero-empast__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-empast__bg-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(85%) contrast(95%) brightness(85%);
  transform: scale(1.03);
}
.hero-empast__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(1200px 600px at 15% 30%, rgba(3,155,229,.25), transparent 55%),
              radial-gradient(800px 500px at 80% 20%, rgba(42,214,123,.18), transparent 60%),
              linear-gradient(180deg, rgba(12,15,19,.6), rgba(12,15,19,.85) 35%, rgba(12,15,19,.95));
  pointer-events: none;
}
.hero-empast .container{ position: relative; z-index: 2; }

/* Título y texto */
.hero-empast__title{
  font-size: var(--step-1);
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.15;
  text-wrap: balance;
}
.hero-empast__subtitle{
  color: var(--empast-text-muted);
  max-width: 58ch;
}
.hero-empast__trust{
  color: rgba(231,237,246,.7);
  font-size: var(--step--1);
}

/* Bullets */
.hero-empast__bullets li{
  background: rgba(255,255,255,.06);
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  backdrop-filter: blur(2px);
}
.hero-empast__bullets i{
  color: var(--empast-brand);
  font-size: 1.1rem;
}

/* Badge con animación pulse */
.badge-empast{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  background: rgba(42,214,123,.1);
  border: 1px solid rgba(42,214,123,.35);
  color: #ccffe7;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
}
.badge-empast__dot{
  width: .6rem; height: .6rem; border-radius: 50%;
  background: var(--empast-accent);
  box-shadow: 0 0 0 0 rgba(42,214,123,.65);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(42,214,123,.65); }
  70%  { box-shadow: 0 0 0 14px rgba(42,214,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,214,123,0); }
}

/* Flotación sutil del producto */
.float-levitate{
  animation: levitate 5.5s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes levitate{
  0%,100% { transform: translateY(0); filter: drop-shadow(0 12px 28px rgba(0,0,0,.35)); }
  50%     { transform: translateY(-7px); filter: drop-shadow(0 16px 32px rgba(0,0,0,.45)); }
}

/* Sombras suaves en tarjetas/medias */
.rounded-4{ border-radius: var(--radius-xl)!important; }

/* --------- Responsive --------- */
@media (max-width: 991.98px){
  .hero-empast__title{ line-height: 1.2; }
  .hero-empast__bg-media{ transform: scale(1.06); }
}

/* --------- Preferencias de usuario --------- */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}


/* =========================================================
   SECCIÓN 2 — BENEFICIOS CLAVE
   ========================================================= */

.benefits-empast{
  background: linear-gradient(180deg, #0c0f13 0%, #10151c 100%);
  color: var(--empast-text);
  position: relative;
  overflow: hidden;
}

.benefits-empast__title{
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .3px;
  margin-bottom: .5rem;
  animation: fadeInDown .8s ease both;
}

.benefits-empast__subtitle{
  color: var(--empast-text-muted);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  font-size: var(--step-0);
  animation: fadeIn .9s ease both;
}

/* Tarjetas de beneficio */
.card-benefit{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  transition: transform .4s ease, box-shadow .3s ease, background .3s ease;
  position: relative;
  isolation: isolate;
}
.card-benefit:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(3,155,229,.15);
}
.card-benefit__title{
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--empast-brand);
}
.card-benefit__text{
  color: var(--empast-text-muted);
  font-size: var(--step--1);
  line-height: 1.6;
}

/* Ícono circular */
.icon-wrapper{
  width: 72px;
  height: 72px;
  margin-inline: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, var(--empast-brand) 0%, #037dc0 70%);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 0 12px rgba(3,155,229,.45);
  transition: transform .4s ease, box-shadow .4s ease;
}
.card-benefit:hover .icon-wrapper{
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 0 22px rgba(3,155,229,.55);
}

/* Animaciones suaves */
@keyframes fadeIn{
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown{
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sutil partícula decorativa en fondo */
.benefits-empast::before{
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(3,155,229,.12), transparent 70%);
  filter: blur(40px);
  animation: floatGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes floatGlow{
  0% { transform: translate(0,0) scale(1); opacity: .7; }
  100% { transform: translate(60px,40px) scale(1.1); opacity: .9; }
}

/* Responsive */
@media (max-width: 767.98px){
  .card-benefit{ padding: 2rem 1rem; }
  .icon-wrapper{ width: 64px; height: 64px; font-size: 1.5rem; }
}


/* =========================================================
   SECCIÓN 3 — CATÁLOGO / STOCK
   ========================================================= */

.catalog-empast{
  background: linear-gradient(180deg, #10151c 0%, #0c0f13 100%);
  color: var(--empast-text);
}
.catalog-empast__title{
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: .2px;
}
.catalog-empast__subtitle{
  color: var(--empast-text-muted);
}

/* Buscador */
.catalog-empast__search .input-group{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  overflow: hidden;
}
.catalog-empast__search .input-group-text{
  background: transparent;
  color: var(--empast-text-muted);
  border: 0;
}
.catalog-empast__search .form-control{
  background: transparent;
  color: var(--empast-text);
  border: 0;
}
.catalog-empast__search .form-control::placeholder{ color: rgba(231,237,246,.5); }

/* Filtros */
.filter-empast{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
}
.filter-empast .form-label{ color: var(--empast-text-muted); }
.filter-empast .form-select{
  background-color: #0f1420;
  color: var(--empast-text);
  border: 1px solid rgba(255,255,255,.12);
}
.filter-empast .form-select:focus{
  border-color: var(--empast-outline);
  box-shadow: 0 0 0 .25rem rgba(3,155,229,.15);
}

/* Tarjetas de producto */
.product-card{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(3,155,229,.12);
  border-color: rgba(3,155,229,.35);
}
.product-card__media img{
  object-fit: cover;
  width: 100%; height: 100%;
}
.product-card__title{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
.product-card__meta{
  color: var(--empast-brand);
  font-weight: 600;
}
.product-card__specs{
  padding-left: 1rem;
  margin-bottom: 0;
  color: var(--empast-text-muted);
  font-size: var(--step--1);
}

/* =========================================================
   SECCIÓN 4 — APLICACIONES
   ========================================================= */

.applications-empast{
  background: linear-gradient(180deg, #0c0f13 0%, #0f1420 100%);
  color: var(--empast-text);
  position: relative;
}
.applications-empast__title{
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .3px;
}
.applications-empast__subtitle{
  color: var(--empast-text-muted);
  max-width: 62ch;
  margin: .5rem auto 0;
}

/* Pills (tabs) */
.pill-empast{
  color: #cfe8f9;
  background: rgba(3,155,229,.08);
  border: 1px solid rgba(3,155,229,.25);
  border-radius: 999px;
  padding: .5rem 1rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.pill-empast:hover{
  transform: translateY(-1px);
  background: rgba(3,155,229,.12);
  border-color: rgba(3,155,229,.45);
  color: #fff;
}
.pill-empast.active{
  color: #fff !important;
  background: linear-gradient(90deg, var(--empast-brand), #31b4ff);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(3,155,229,.25);
}

/* Contenido */
.apps__heading{
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.apps__bullets{
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  color: var(--empast-text-muted);
}
.apps__bullets li{ margin-bottom: .4rem; }

/* Media */
.object-fit-cover{ object-fit: cover; }

/* Transiciones suaves al cambiar de tab */
.tab-pane{
  transition: opacity .25s ease, transform .25s ease;
}
.tab-pane:not(.active){
  opacity: 0;
  transform: translateY(6px);
}

/* =========================================================
   SECCIÓN 5 — DISTRIBUIDOR AUTORIZADO
   ========================================================= */

.authorized-empast {
  background: radial-gradient(circle at 10% 20%, #0c0f13 0%, #0f1520 60%, #101825 100%);
  color: var(--empast-text);
  position: relative;
  overflow: hidden;
}

/* Overlay decorativo */
.authorized-empast::before {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(3,155,229,0.15), transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Badge superior */
.badge-auth {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: rgba(3,155,229,.15);
  color: var(--empast-brand);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(3,155,229,.2);
  animation: fadeInDown .8s ease both;
}

.authorized-empast__title {
  font-weight: 800;
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  line-height: 1.25;
  color: #fff;
  animation: fadeIn .8s ease both .3s;
}

.authorized-empast__title .highlight {
  color: var(--empast-brand);
  text-shadow: 0 0 18px rgba(3,155,229,.4);
}

.authorized-empast__text {
  color: var(--empast-text-muted);
  max-width: 55ch;
  animation: fadeIn .9s ease both .5s;
}

/* Sello visual */
.authorized-seal {
  max-width: 380px;
  transition: transform .5s ease;
}
.authorized-seal:hover {
  transform: scale(1.03);
}
.seal-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,155,229,.25), transparent 70%);
  filter: blur(20px);
  animation: rotateGlow 16s linear infinite;
}
.seal-logo {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(3,155,229,.3);
  animation: fadeIn .8s ease both .6s;
}
.glow-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(3,155,229,.4);
  animation: spinRing 18s linear infinite;
}

/* Animaciones */
@keyframes pulseGlow {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.15); opacity: .9; }
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spinRing {
  0% { transform: rotate(0deg); opacity: .6; }
  100% { transform: rotate(360deg); opacity: 1; }
}


/* =========================================================
   SECCIÓN 6 — CONTACTO
   ========================================================= */
.contact-empast{
  background: linear-gradient(180deg, #0f1420 0%, #0c0f13 100%);
  color: var(--empast-text);
}
.contact-empast__title{
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 800;
}
.contact-empast__subtitle{
  color: var(--empast-text-muted);
}

.contact-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
}
.contact-card .form-label{ color: var(--empast-text-muted); }
.contact-card .form-control,
.contact-card .form-select{
  background-color: #0f1420;
  color: var(--empast-text);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-card .form-control::placeholder{ color: rgba(231,237,246,.5); }
.contact-card .form-control:focus,
.contact-card .form-select:focus{
  border-color: var(--empast-outline);
  box-shadow: 0 0 0 .25rem rgba(3,155,229,.15);
}

.contact-side .contact-box{
  background: linear-gradient(180deg, rgba(3,155,229,.10), rgba(3,155,229,.06));
  border: 1px solid rgba(3,155,229,.25);
  border-radius: var(--radius-xl);
}
.contact-list li{
  display: flex; align-items: center; gap: .6rem;
  color: var(--empast-text);
  margin-bottom: .4rem;
}
.contact-list i{ color: var(--empast-brand); }

/* =========================================================
   FOOTER inspirado en tu captura (azul)
   ========================================================= */


/* =========================================================
   HERO — SLIDER (Carousel)
   ========================================================= */

.hero-empast__carousel {
  position: relative;
}

/* Para mantener tu estética (rounded + shadow) sin que Bootstrap meta bordes raros */
.hero-empast__carousel-inner {
  overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
}

/* Imagen del slide */
.hero-empast__slide-img{
  aspect-ratio: 1 / 1;      /* look cuadrado elegante */
  object-fit: contain;       /* productos con fondo transparente se ven perfectos */
  padding: 1.25rem;          /* aire alrededor */
}

/* Indicadores más pro */
.hero-empast__indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: .5;
}
.hero-empast__indicators .active{
  opacity: 1;
}

/* Controles tipo “pill” */
.hero-empast__control{
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  margin: 0 .6rem;
  transition: transform .2s ease, background .2s ease;
}
.hero-empast__control:hover{
  background: rgba(0,0,0,.38);
  transform: translateY(-50%) scale(1.06);
}

/* Ajuste de íconos de flechas */
.hero-empast__control .carousel-control-prev-icon,
.hero-empast__control .carousel-control-next-icon{
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

.ratio-4x3 {
    --bs-aspect-ratio: 100%;
}



/* =========================================================
   OVERRIDE LIGHT THEME (Blanco + #0e2a97 + #0bb0f3)
   Pegar AL FINAL del style-empast.css
   ========================================================= */

:root{
  /* Brand */
  --empast-brand: #0e2a97;      /* azul */
  --empast-brand-600: #0bb0f3;  /* celeste */
  --empast-brand-700: #0b2a88;

  /* Light surfaces */
  --empast-bg: #f6f9ff;         /* fondo general claro */
  --empast-surface: #ffffff;    /* secciones */
  --empast-card: #ffffff;

  /* Textos en light */
  --empast-text: #0b1220;
  --empast-text-muted: #475569; /* slate */
  --empast-outline: rgba(11,176,243,.55);

  /* Ghost en light */
  --empast-ghost: rgba(14,42,151,.08);
  --empast-ghost-border: rgba(14,42,151,.22);

  /* Shadows más suaves */
  --empast-shadow: 0 14px 30px rgba(2,8,23,.08), 0 6px 14px rgba(2,8,23,.06);
}

/* Body más claro */
body{
  background: #f3f7ff;
  color: var(--empast-text);
}

/* ---------- NAVBAR (ya era blanca, solo afinamos) ---------- */
.nav-empast{
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(2,8,23,.06);
}
.nav-empast .nav-link{
  color: #0b1220;
}
.nav-empast .nav-link:hover{
  background: rgba(11,176,243,.10);
  color: var(--empast-brand);
}

/* ---------- BOTONES ---------- */
.btn-empast-primary{
  --bs-btn-bg: var(--empast-brand);
  --bs-btn-border-color: var(--empast-brand);
  --bs-btn-hover-bg: var(--empast-brand-600);
  --bs-btn-hover-border-color: var(--empast-brand-600);
  --bs-btn-active-bg: var(--empast-brand-700);
  --bs-btn-active-border-color: var(--empast-brand-700);
  --bs-btn-focus-shadow-rgb: 11,176,243;
}

.btn-empast-ghost{
  color: var(--empast-brand);
  background: rgba(11,176,243,.10);
  border: 1px solid rgba(11,176,243,.28);
}
.btn-empast-ghost:hover{
  background: rgba(11,176,243,.16);
  border-color: rgba(11,176,243,.45);
}

/* ---------- HERO más CLARO ---------- */
.hero-empast{
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  color: var(--empast-text);
}
.hero-empast__bg-media{
  filter: saturate(105%) contrast(100%) brightness(105%);
}
.hero-empast__overlay{
  background:
    radial-gradient(1200px 600px at 15% 30%, rgba(11,176,243,.25), transparent 55%),
    radial-gradient(900px 520px at 80% 20%, rgba(14,42,151,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.85) 35%, rgba(255,255,255,.95));
}
.hero-empast__subtitle,
.hero-empast__trust{
  color: #334155;
}
.hero-empast__bullets li{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(2,8,23,.08);
}
.hero-empast__bullets i{
  color: var(--empast-brand-600);
}

/* Badge */
.badge-empast{
  background: rgba(11,176,243,.12);
  border: 1px solid rgba(11,176,243,.25);
  color: var(--empast-brand);
}
.badge-empast__dot{
  background: var(--empast-brand-600);
  box-shadow: 0 0 0 0 rgba(11,176,243,.45);
}

/* ---------- SECCIONES (benefits/catalog/apps/contact) más light ---------- */
.benefits-empast,
.catalog-empast,
.applications-empast,
.contact-empast{
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  color: var(--empast-text);
}

.benefits-empast__subtitle,
.catalog-empast__subtitle,
.applications-empast__subtitle,
.contact-empast__subtitle{
  color: var(--empast-text-muted);
}

/* Cards */
.card-benefit,
.product-card,
.contact-card,
.filter-empast{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,8,23,.08);
  box-shadow: 0 10px 26px rgba(2,8,23,.06);
}

.card-benefit__title{ color: var(--empast-brand); }
.card-benefit__text,
.product-card__specs{
  color: #475569;
}

/* Product card title */
.product-card__title{
  color: #0b1220;
}

/* Hover menos “dark” */
.product-card:hover{
  box-shadow: 0 14px 34px rgba(11,176,243,.18);
  border-color: rgba(11,176,243,.35);
}

/* ---------- BUSCADOR (input) claro ---------- */
.catalog-empast__search .input-group{
  background: #fff;
  border: 1px solid rgba(2,8,23,.10);
  box-shadow: 0 10px 24px rgba(2,8,23,.05);
}
.catalog-empast__search .input-group-text{
  color: #64748b;
}
.catalog-empast__search .form-control{
  color: #0b1220;
}
.catalog-empast__search .form-control::placeholder{
  color: #94a3b8;
}

/* Si todavía tienes filtros en el HTML, que se vean light */
.filter-empast .form-label{ color: #475569; }
.filter-empast .form-select{
  background-color: #fff;
  color: #0b1220;
  border: 1px solid rgba(2,8,23,.12);
}
.filter-empast .form-select:focus{
  border-color: rgba(11,176,243,.65);
  box-shadow: 0 0 0 .25rem rgba(11,176,243,.18);
}

/* ---------- Pills de aplicaciones ---------- */
.pill-empast{
  color: var(--empast-brand);
  background: rgba(11,176,243,.10);
  border: 1px solid rgba(11,176,243,.22);
}
.pill-empast:hover{
  background: rgba(11,176,243,.16);
  border-color: rgba(11,176,243,.40);
  color: #0b1220;
}
.pill-empast.active{
  background: linear-gradient(90deg, var(--empast-brand), var(--empast-brand-600));
  box-shadow: 0 10px 26px rgba(11,176,243,.25);
}

/* ---------- FOOTER (mantener azul fuerte como pediste) ---------- */
.footer-empast{
  background: #0e2a97;
}
.footer-bottom{
  background: #0b247f;
}

/* ---------- Carousel hero para light ---------- */
.hero-empast__carousel-inner{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(2,8,23,.08);
}
.hero-empast__control{
  background: rgba(14,42,151,.12);
  border: 1px solid rgba(14,42,151,.18);
}
.hero-empast__control:hover{
  background: rgba(14,42,151,.18);
}


/* ================================
   AUTHORIZED SECTION (Mejora visual)
   ================================ */

.authorized-empast{
  /* si quieres mantener el look oscuro elegante como la captura */
  background: radial-gradient(circle at 10% 20%, #0c0f13 0%, #0f1520 60%, #101825 100%);
  color: var(--empast-text);
  position: relative;
  overflow: hidden;
}

/* Texto más legible (tu párrafo estaba muy apagado) */
.authorized-empast__text{
  color: rgba(231,237,246,.78);
  max-width: 60ch;
}

/* Microcopy debajo de botones */
.authorized-empast__micro{
  color: rgba(231,237,246,.75);
  font-size: .95rem;
}

/* Sello más “pro” */
.authorized-seal{
  max-width: 420px;  /* más grande */
  isolation: isolate;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.35));
}

.seal-bg{
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,176,243,.18), transparent 65%);
  filter: blur(26px);
  z-index: 0;
}

/* aro punteado como en tu captura */
.seal-ring{
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px dashed rgba(11,176,243,.35);
  opacity: .9;
  z-index: 1;
  animation: spinRing 18s linear infinite;
}

.seal-logo{
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(11,176,243,.18);
  transform: translateZ(0);
}

/* glow exterior */
.glow-circle{
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  border: 1px solid rgba(11,176,243,.18);
  z-index: 1;
  filter: blur(.2px);
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991.98px){
  .authorized-seal{ max-width: 360px; }
}


/* =========================================================
   AUTHORIZED SECTION — LIGHT / CORPORATIVO
   ========================================================= */

.authorized-empast{
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  color: #0b1220;
}

/* Badge */
.badge-auth{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(11,176,243,.12);
  color: #0e2a97;
  border: 1px solid rgba(11,176,243,.35);
  font-weight: 600;
  font-size: .9rem;
}

/* Título */
.authorized-empast__title{
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  font-weight: 800;
  color: #0e2a97;
  line-height: 1.25;
}

.authorized-empast__title .highlight{
  color: #0bb0f3;
}

/* Texto */
.authorized-empast__text{
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 60ch;
}

/* Sello */
.authorized-seal{
  max-width: 380px;
  position: relative;
}

.seal-bg{
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,176,243,.18), transparent 65%);
  filter: blur(22px);
  z-index: 0;
}

.seal-ring{
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px dashed rgba(14,42,151,.25);
  z-index: 1;
}

.seal-logo{
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(2,8,23,.12);
}

/* Botones */
.authorized-empast .btn-empast-primary{
  background: #0e2a97;
  border: none;
  box-shadow: 0 8px 20px rgba(14,42,151,.25);
}

.authorized-empast .btn-empast-ghost{
  color: #0e2a97;
  background: rgba(11,176,243,.08);
  border: 1px solid rgba(11,176,243,.35);
}

/* Responsive */
@media (max-width: 991.98px){
  .authorized-seal{
    max-width: 320px;
  }
}

.footer-link {
    color: #ffffffcc;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.social-icon {
    background-color: white;
    color: #0e2a97;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}


/* Botón flotante de WhatsApp con pulso */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  line-height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animación de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

ol, ul {
    margin: 0 0 0 0;
}
