:root{
  --brand:#0d6efd;
  --ink:#0b1320;
  --muted:#6c757d;
  --card:#ffffff;
  --bg:#0b1320;
}

body { color: var(--ink); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif; }
.navbar{ backdrop-filter: blur(10px); }


/* Navbar logo: tamaño exacto y responsive */
.navbar-brand .navbar-logo{
  height: 38px;          /* Desktop */
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@media (max-width: 992px){
  .navbar-brand .navbar-logo{ height: 32px; }
}
@media (max-width: 576px){
  .navbar-brand .navbar-logo{ height: 26px; }
  .navbar{ padding-top: .4rem; padding-bottom: .4rem; }
}


.hero{
  background: radial-gradient(1200px circle at 10% 10%, rgba(13,110,253,.20), transparent 40%),
              radial-gradient(900px circle at 90% 20%, rgba(25,135,84,.18), transparent 40%),
              linear-gradient(180deg, #0b1320 0%, #0b1320 45%, #ffffff 45%, #ffffff 100%);
  color:#fff;
  padding-top: 6.5rem;
  padding-bottom: 3rem;
}

.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.25rem;
}

.section{ padding: 4.5rem 0; }

.badge-soft{
  background: rgba(13,110,253,.10);
  color: var(--brand);
  border: 1px solid rgba(13,110,253,.18);
}

.icon-pill{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.15);
  color: var(--brand);
  flex: 0 0 auto;
}

.shadow-soft{ box-shadow: 0 18px 50px rgba(11,19,32,.10); }
.rounded-2xl{ border-radius: 1.25rem; }

.divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.12), transparent);
}

.pricing-card{
  border: 1px solid rgba(11,19,32,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pricing-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(11,19,32,.10);
}

.pricing-highlight{
  border: 2px solid rgba(13,110,253,.35);
  background: linear-gradient(180deg, rgba(13,110,253,.06), #fff 60%);
}

.whatsapp-float{
  position: fixed; right: 18px; bottom: 18px; z-index: 1030;
}
.whatsapp-float a{
  width: 54px; height: 54px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: #25D366;
  color:#fff; text-decoration:none;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.form-control, .form-select { border-radius: .9rem; }
.btn { border-radius: .9rem; }
.scroll-mt{ scroll-margin-top: 90px; }

/* =====================
   BANNER CARRUSEL
===================== */
.banner-carousel{ padding: 6.5rem 0 0; background: #ffffff; }
.banner-carousel .carousel{ border: 1px solid rgba(11,19,32,.10); border-radius: 1.25rem; overflow:hidden; }
.banner-carousel .carousel-item{ height: 520px; position: relative; }
.banner-carousel img{ height: 520px; object-fit: cover; object-position: center; }
.banner-carousel .carousel-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,19,32,.55) 0%, rgba(11,19,32,.12) 55%, rgba(11,19,32,.10) 100%);
  z-index: 1;
}
.banner-carousel .carousel-caption{ z-index: 2; text-align:left; left: 6%; right: 6%; bottom: 14%; }
.banner-carousel .carousel-caption h2{ font-weight:800; }
@media (max-width: 992px){
  .banner-carousel .carousel-item{ height: 420px; }
  .banner-carousel img{ height: 420px; }
  .banner-carousel .carousel-caption{ bottom: 10%; }
}
@media (max-width: 576px){
  .banner-carousel .carousel-item{ height: 320px; }
  .banner-carousel img{ height: 320px; }
  .banner-carousel .carousel-caption{ bottom: 8%; }
  .banner-carousel .carousel-caption h2{ font-size: 1.6rem; }
}

/* Footer */
.footer{
  background:#0b1320;
  color:#fff;
  padding: 3rem 0 2rem;
}
.footer .footer-title,
.footer .footer-subtitle{ font-weight: 700; }
.footer .footer-text,
.footer .footer-list li{ color: rgba(255,255,255,.75); }
.footer .footer-list{ list-style:none; padding:0; margin:0; }
.footer .footer-divider{ height:1px; background: rgba(255,255,255,.12); }


/* Banner Comercio Exterior - Relevamiento BCRA */
.comex-banner{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  background: url("img/banner-bcra-bg.webp") center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .10);
}
.comex-banner::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,19,32,.86) 0%, rgba(11,19,32,.62) 45%, rgba(11,19,32,.22) 100%);
}
.comex-banner .content{
  position: relative;
  padding: 56px 56px;
  max-width: 860px;
}
.comex-banner .badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .9rem;
}
.comex-banner h3{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
.comex-banner .sub{
  color: rgba(255,255,255,.86);
}
.comex-banner ul{
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.comex-banner li{
  display:flex;
  gap:.6rem;
  margin-top: .65rem;
  color: rgba(255,255,255,.92);
}
.comex-banner li i{
  color: #4cc3ff;
  margin-top: .15rem;
}

/* Responsive */
@media (max-width: 992px){
  .comex-banner{ border-radius: 18px; }
  .comex-banner .content{ padding: 40px 28px; }
  .comex-banner{ min-height: 360px; }
}
@media (max-width: 576px){
  .comex-banner{ min-height: 420px; }
  .comex-banner h3{ font-size: 1.35rem; }
}


/* ===== Animaciones suaves (2026) ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Hover elegante para tarjetas (sin exagerar) */
#servicios .p-4.bg-white.border.rounded-2xl,
#nosotros .p-3.bg-white.border.rounded-2xl,
#nosotros .p-4.border.rounded-2xl{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
#servicios .p-4.bg-white.border.rounded-2xl:hover,
#nosotros .p-3.bg-white.border.rounded-2xl:hover,
#nosotros .p-4.border.rounded-2xl:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,24,40,.12);
  border-color: rgba(13,110,253,.22);
}

/* WhatsApp flotante: pulso sutil */
.whatsapp-float{
  animation: waPulse 2.6s ease-in-out infinite;
}
@keyframes waPulse{
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

/* Si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .whatsapp-float{ animation: none; }
  #servicios .p-4.bg-white.border.rounded-2xl,
  #nosotros .p-3.bg-white.border.rounded-2xl,
  #nosotros .p-4.border.rounded-2xl{ transition: none; }
}
