/* MIXED CSS PACK */
/* Template: recargasvirtualesnb.com.ar/index.html */
/* Template mtime: 2025-10-20 22:42:52 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #0b121d;
      --primary-dark: #1d4ed8;
      --secondary: #282c34;
      --dark: #0f172a;
      --light: #f8fafc;
      --success: #10b981;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-700: #334155;
      --gray-900: #0f172a;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html { 
      scroll-behavior: smooth; 
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: var(--gray-700);
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      color: var(--dark);
      font-weight: 700;
      line-height: 1.2;
    }
    
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      padding: 0.8rem 0;
      transition: var(--transition);
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .navbar-brand span {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--gray-700);
      transition: var(--transition);
      position: relative;
      padding: 0.5rem 1rem !important;
    }
    
    .nav-link:hover, .nav-link:focus {
      color: var(--primary);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      transition: var(--transition);
      transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
      width: 70%;
    }
    
    .btn {
      border-radius: 8px;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      transition: var(--transition);
      border: none;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      box-shadow: var(--shadow-sm);
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .btn-outline-primary {
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    
    .btn-outline-primary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    section {
      scroll-margin-top: 88px;
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
    
    .hero {
      padding-top: 8rem;
      padding-bottom: 6rem;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      z-index: 0;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
      z-index: 0;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    .hero h1 {
      font-weight: 800;
      font-size: 3.5rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
    }
    
    .hero .lead {
      font-size: 1.25rem;
      color: var(--gray-700);
      margin-bottom: 2rem;
    }
    
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: var(--primary);
      border-radius: 50px;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
      transition: var(--transition);
    }
    
    .chip:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .check {
      color: var(--success);
    }
    
    .card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      box-shadow: var(--shadow-sm);
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    
    .card-body {
      padding: 2rem;
    }
    
    .card-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .feature-box {
      padding: 2rem;
      border-radius: 16px;
      background: white;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    
    .feature-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .ticker-frame {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }
    
    .ticker-square {
      width: 100%;
      max-width: 500px;
      height: 500px;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .ticker-square img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .ticker-square:hover img {
      transform: scale(1.05);
    }
    
    @media (max-width: 991.98px) {
      .ticker-frame {
        min-height: auto;
      }
      
      .ticker-square {
        width: 100%;
        height: 400px;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 767.98px) {
      .ticker-square {
        height: 300px;
      }
      
      section {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
      
      .hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
    }
    
    .accordion-button {
      font-weight: 600;
      padding: 1.25rem;
      border-radius: 8px !important;
    }
    
    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      box-shadow: var(--shadow-sm);
    }
    
    .accordion-button:focus {
      box-shadow: none;
      border-color: var(--primary);
    }
    
    .accordion-body {
      padding: 1.25rem;
    }
    
    /* Footer corregido */
    .site-footer {
      background: #0b121d;
      color: #dbe1ea;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      padding: 3rem 0;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    
    .site-footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .site-footer a { 
      color: #cbd5e1; 
      text-decoration: none; 
      transition: color 0.3s ease;
    }
    
    .site-footer a:hover { 
      color: #4cc9f0; 
    }

    .footer-title {
      color: white;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border-radius: 3px;
    }
    
    .wa-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1040;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      animation: pulse 2s infinite;
    }
    
    .wa-float:hover {
      transform: scale(1.1);
      color: white;
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    
    .statusbar {
      position: sticky;
      top: 76px;
      z-index: 1030;
    }
    
    .bg-gradient {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }
    
    .text-gradient {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .form-control {
      border-radius: 8px;
      padding: 0.75rem 1rem;
      border: 1px solid var(--gray-300);
      transition: var(--transition);
    }
    
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
    }
    
    .carousel-control-prev, .carousel-control-next {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
      transition: var(--transition);
    }
    
    .carousel-control-prev {
      left: 15px;
    }
    
    .carousel-control-next {
      right: 15px;
    }
    
    .carousel-control-prev:hover, .carousel-control-next:hover {
      opacity: 1;
    }
    
    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 5px;
      background-color: var(--gray-300);
      border: none;
      transition: var(--transition);
    }
    
    .carousel-indicators .active {
      background-color: var(--primary);
      transform: scale(1.2);
    }
    
    .animate-fade-in {
      animation: fadeIn 1s ease forwards;
    }
    
    .animate-slide-up {
      animation: slideUp 0.8s ease forwards;
    }
    
    .animate-slide-left {
      animation: slideLeft 0.8s ease forwards;
    }
    
    .animate-slide-right {
      animation: slideRight 0.8s ease forwards;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(30px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes slideLeft {
      from { 
        opacity: 0;
        transform: translateX(30px);
      }
      to { 
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideRight {
      from { 
        opacity: 0;
        transform: translateX(-30px);
      }
      to { 
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    
    .opacity-0 { opacity: 0; }

/* ===== INLINE <style> BLOCK #2 ===== */
/* Hero: caja del logo a la derecha en desktop */
.brand-box{ max-width: 420px; }
.logo-hero{ border-radius: 1rem; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
/* Opcional: en pantallas chicas que el logo no sea gigante */
@media (max-width: 576px){
  .brand-box{ max-width: 320px; }
}

/* ===== INLINE <style> BLOCK #3 ===== */
/* Estilos scoped solo para este bloque */
        .req-card {
          position: relative;
          overflow: hidden;
          border: 0;
          background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
          color: #fff;
        }
        .req-card .req-item {
          background: rgba(255,255,255,0.08);
          border: 1px solid rgba(255,255,255,0.12);
          border-radius: 1rem;
          padding: 1rem 1.25rem;
          transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
          height: 100%;
        }
        .req-card .req-item:hover {
          transform: translateY(-2px);
          background: rgba(255,255,255,0.12);
          border-color: rgba(255,255,255,0.2);
        }
        .req-card .req-icon {
          width: 44px;
          height: 44px;
          border-radius: 50%;
          display: grid;
          place-items: center;
          background: rgba(255,255,255,0.18);
          flex-shrink: 0;
          font-size: 1.3rem;
        }
        .req-card h6 {
          margin: 0;
          font-weight: 600;
          letter-spacing: .2px;
        }

/* ===== INLINE <style> BLOCK #4 ===== */
/* Imagen de acompañamiento en Servicios */
.services-figure { min-height: 100%; }
.services-photo-wrap{
  position: relative;
  padding: 6px;               /* borde "fino" */
  border-radius: 20px;
  background: conic-gradient(from 180deg at 50% 50%, #ffffff, #f3f4f6, #ffffff);
}
.services-photo{
  border-radius: 16px;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}
.services-photo-wrap:hover .services-photo{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.services-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.95);
  color:#111;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: .9rem;
  backdrop-filter: blur(6px);
}

/* Responsive: separaciones y alturas */
@media (max-width: 991.98px){
  .services-figure{ margin-top: .5rem; }
}

/* ===== INLINE <style> BLOCK #5 ===== */
/* ====== TICKER BIRKAT (encapsulado) ====== */
      #ticker-birkat{
        --tb-height: clamp(260px, 48vh, 560px);
        --tb-gap: clamp(12px, 2vw, 22px);
        --tb-radius: 18px;
        --tb-shadow: 0 14px 34px rgba(0,0,0,.18);
        --tb-mask: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
        --tb-speed: 120; /* px/seg autoplay */
        --tb-btn-bg: #fff;
        --tb-btn-bd: rgba(0,0,0,.14);
      }
  
      #ticker-birkat .tb-controls{
        display:flex; gap:.5rem; align-items:center;
      }
      #ticker-birkat .tb-btn{
        appearance:none; border:1px solid var(--tb-btn-bd); background:var(--tb-btn-bg);
        padding:.55rem .9rem; border-radius:999px; line-height:1; cursor:pointer;
        font-weight:700; font-size:1.15rem;
        box-shadow:0 4px 12px rgba(0,0,0,.08);
        transition:transform .12s ease, box-shadow .2s ease, background .2s ease;
        position:relative; z-index:5; /* por si algo se superpone */
      }
      #ticker-birkat .tb-btn:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.16); }
      #ticker-birkat .tb-btn:active{ transform:translateY(0); }
  
      #ticker-birkat .tb-viewport{
        position:relative; overflow:auto; -ms-overflow-style:none; scrollbar-width:none;
        height: var(--tb-height); border-radius: var(--tb-radius); background:#fff;
        box-shadow: var(--tb-shadow);
        -webkit-mask-image: var(--tb-mask); mask-image: var(--tb-mask);
      }
      #ticker-birkat .tb-viewport::-webkit-scrollbar{ display:none; }
  
      #ticker-birkat .tb-inner{
        display:flex; align-items:center; gap:var(--tb-gap); padding:var(--tb-gap);
        width:max-content; user-select:none;
      }
  
      #ticker-birkat .tb-item{
        flex:0 0 auto; display:inline-flex; align-items:stretch; justify-content:center;
        height: calc(var(--tb-height) - (var(--tb-gap) * 2));
        border-radius: var(--tb-radius); overflow:hidden; background:#f2f4f6;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        transition: transform .18s ease, box-shadow .2s ease;
      }
      #ticker-birkat .tb-item img{
        height:100%; width:auto; display:block; object-fit:cover;
        filter: saturate(1.05) contrast(1.03);
      }
      #ticker-birkat .tb-item:hover{
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0,0,0,.22);
      }
  
      @media (max-width: 576px){
        #ticker-birkat{ --tb-gap: 10px; }
      }

/* ===== INLINE <style> BLOCK #6 ===== */
/* ===== Contacto (layout limpio, sin colapsos) ===== */
  .contact-section{ padding: 64px 0; }
  @media (max-width: 575.98px){ .contact-section{ padding: 48px 0; } }
  
  .contact-card{
    background:
      radial-gradient(140% 100% at 0% 0%, #ffffff 0%, #f7f8fb 60%, #f1f3f8 100%);
    border-radius: 22px;
  }
  .contact-chip{
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.15);
  }
  .icon-pill{
    width: 44px; height: 44px; flex: 0 0 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: #0d6efd; color: #fff; font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(13,110,253,.22);
  }
  .mini-card{
    border-radius: 14px;
    background: #fff;
    padding: .8rem 1rem;
    font-weight: 600; color: #111;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    display: flex; align-items: center;
  }
  
  /* Floating labels tweaks */
  .form-floating > .form-control,
  .form-floating > .form-select{ border-radius: 12px; }
  .form-floating > label{ color:#6b7280; }
  .form-control:focus{ box-shadow: 0 0 0 .2rem rgba(13,110,253,.15); }
  
  /* Cards height fix to evitar “colapsos” entre columnas */
  @media (min-width: 992px){
    .contact-section .card.h-100{ min-height: 100%; }
  }

