/* MIXED CSS PACK */
/* Template: aspersonalizados.com.ar/index.html */
/* Template mtime: 2026-02-19 21:24:07 */

/* 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 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
/*--------------------------------------------------------------
    # VARIABLES (respetadas y enriquecidas con tonos más profundos)
    --------------------------------------------------------------*/
    :root {
      --ink: #0b1120;           /* más profundo que el original */
      --muted: #4b5565;         /* equilibrado */
      --bg: #ffffff;
      --bg-alt: #f4f6fc;        /* ligeramente más fresco */
      --border: rgba(2, 10, 25, 0.06);
      --border-strong: rgba(2, 10, 25, 0.12);
      --shadow-sm: 0 12px 30px -8px rgba(0, 0, 0, 0.05), 0 4px 8px -4px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 25px 50px -15px rgba(0, 0, 0, 0.15), 0 8px 15px -8px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 40px 70px -20px rgba(0, 0, 0, 0.25), 0 15px 30px -12px rgba(0, 0, 0, 0.15);
      --accent: #95c931;
      --accent-soft: rgba(205, 231, 34, 0.14);
      --accent-glare: rgba(11, 17, 32, 0.85);
      --accent-glow: rgba(205, 231, 34, 0.10);
      --radius-md: 24px;
      --radius-lg: 40px;
      --radius-xl: 48px;
      --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
      --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /*--------------------------------------------------------------
    # BASE (reset moderno)
    --------------------------------------------------------------*/
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .anchor-offset {
      scroll-margin-top: 100px;
    }

    

    /*--------------------------------------------------------------
    # SECCIONES (más aire entre bloques)
    --------------------------------------------------------------*/
    .section {
      padding: 96px 0;
    }
    @media (max-width: 768px) {
      .section {
        padding: 72px 0;
      }
    }
/*--------------------------------------------------------------
    # NAVBAR (vidrio hiper premium)
    --------------------------------------------------------------*/
    .navbar {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      transition: var(--transition);
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: 1.8rem;
      background: linear-gradient(135deg, var(--ink) 20%, var(--accent) 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-link {
      font-weight: 550;
      color: var(--muted);
      padding: 0.5rem 1.2rem !important;
      border-radius: 100px;
      font-size: 1rem;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--ink);
      background: var(--accent-soft);
      transform: translateY(-1px);
    }

    .btn-nav {
      background: transparent;
      border: 1.5px solid var(--border-strong);
      border-radius: 100px;
      padding: 0.65rem 1.6rem;
      font-weight: 600;
      color: var(--ink);
      box-shadow: var(--shadow-sm);
      transition: var(--transition-bounce);
    }

    .btn-nav:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--ink);
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-md);
    }

    .btn-wa {
      background: var(--accent);
      color: var(--ink);
      border-radius: 100px;
      padding: 0.65rem 1.8rem;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-bounce);
      border: 1.5px solid transparent;
    }

    .btn-wa:hover {
      background: var(--ink);
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-lg);
      color: white;
      border-color: rgba(255, 255, 255, 0.1);
    }

    /*--------------------------------------------------------------
    # TIPOGRAFÍA (ultra legible)
    --------------------------------------------------------------*/
    .eyebrow {
      display: inline-block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      font-weight: 700;
      color: var(--accent-glare);
      background: var(--accent-soft);
      padding: 0.5rem 1.2rem 0.5rem 1.1rem;
      border-radius: 100px;
      border: 1px solid var(--border);
      backdrop-filter: blur(4px);
      margin-bottom: 1rem;
    }

    .eyebrow i {
      margin-right: 8px;
      font-size: 1.1rem;
    }

    .section-title {
      font-size: clamp(2.5rem, 7vw, 3.8rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      color: var(--ink);
      margin: 0.5rem 0 1rem;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: var(--muted);
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
    }

    /*--------------------------------------------------------------
    # HERO (fondo con gradientes cinéticos)
    --------------------------------------------------------------*/
    .hero {
      background: 
        radial-gradient(1400px 600px at 10% 30%, rgba(205, 231, 34, 0.10), transparent 60%),
        radial-gradient(1000px 500px at 100% 70%, rgba(205, 231, 34, 0.10), transparent 70%),
        var(--bg-alt);
      border-bottom: 1px solid var(--border);
      padding-top: 2rem;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      transition: var(--transition);
    }

    .hero h1 {
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }

    .hero-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .hero-list li {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      font-weight: 550;
    }

    .hero-list i {
      color: var(--accent);
      font-size: 1.8rem;
      background: var(--accent-soft);
      border-radius: 100px;
      padding: 0.4rem;
      transition: var(--transition);
    }

    .hero-list li:hover i {
      background: var(--accent);
      color: var(--ink);
      transform: scale(1.05);
    }

    .hero-img-wrap {
      background: linear-gradient(135deg, #ffffff, var(--bg-alt));
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 400px;
      border-left: 1px solid var(--border);
      padding: 2rem;
    }

    .hero-img {
      max-width: 100%;
      max-height: 460px;
      object-fit: contain;
      border-radius: 32px;
      box-shadow: var(--shadow-lg);
      transition: var(--transition-bounce);
    }

    .hero-img:hover {
      transform: scale(1.02) rotate(0.5deg);
      box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.5);
    }

    

    /* Ajuste fino: HERO mantiene su padding superior y suma un buen cierre */
    .hero.section {
      padding-top: 2rem;   /* respeta el diseño existente */
      padding-bottom: 88px;
    }
    @media (max-width: 768px) {
      .hero.section {
        padding-bottom: 64px;
      }
    }
/*--------------------------------------------------------------
    # CARDS (con vidrio y elevación)
    --------------------------------------------------------------*/
    .card-soft {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: var(--transition-bounce);
      box-shadow: var(--shadow-sm);
    }

    .card-soft:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-8px) scale(1.01);
      border-color: var(--accent-soft);
      background: white;
    }

    .icon-pill {
      width: 64px;
      height: 64px;
      background: var(--accent-soft);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.8rem;
      transition: var(--transition-bounce);
    }

    

    .icon-pill i {
      font-size: 2rem;
      line-height: 1;
    }
.card-soft:hover .icon-pill {
      background: var(--accent);
      color: var(--ink);
      transform: scale(1.05) rotate(-2deg);
      box-shadow: var(--shadow-sm);
    }

    .service-card {
      padding: 1.5rem !important;
    }

    /*--------------------------------------------------------------
    # QUIÉNES SOMOS (beneficios responsive + ticker infinito)
    --------------------------------------------------------------*/
    .who-features{
      display:flex;
      flex-direction: column;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }
    @media (min-width: 992px){
      .who-features{
        flex-direction: row;
        gap: 14px;
      }
    }
    .who-feature{
      display:flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px 14px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: var(--transition-bounce);
      flex: 1 1 0;
      min-width: 0;
    }
    .who-feature:hover{
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(205, 231, 34, 0.35);
      background: white;
    }
    .who-feature .icon-pill{
      width: 54px;
      height: 54px;
      border-radius: 18px;
      flex: 0 0 auto;
    }
    .who-feature-txt{ min-width: 0; }
    .who-feature h4{ letter-spacing: -0.02em; }

    .who-ticker{
      position: relative;
      border-radius: calc(var(--radius-md) - 6px);
      overflow: hidden;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #ffffff, var(--bg-alt));
      box-shadow: var(--shadow-sm);
      min-height: 480px;
      display:flex;
      align-items:center;
    }
    @media (max-width: 1200px){
      .who-ticker{ min-height: 420px; }
    }
    @media (max-width: 768px){
      .who-ticker{ min-height: 360px; }
    }

.who-track{
      display:flex;
      gap: 18px;
      padding: 12px;
      width: max-content;
      animation: whoScroll 18s linear infinite;
      will-change: transform;
    }
    .who-ticker:hover .who-track{
      animation-play-state: paused;
    }

.who-item{
      flex: 0 0 auto;
      appearance:none;
      -webkit-appearance:none;
      border: 1px solid var(--border);
      background: white;
      padding:0;
      cursor: pointer;

      width: 420px;
      height: 420px;
      border-radius: 28px;
      overflow:hidden;
      box-shadow: var(--shadow-md);
    }
    .who-item:focus{ outline: none; box-shadow: 0 0 0 .25rem rgba(205,231,34,.35); }

    @media (max-width: 1200px){
      .who-item{ width: 360px; height: 360px; }
    }
    @media (max-width: 768px){
      .who-item{
        width: min(92vw, 420px);
        height: min(70vw, 340px);
        border-radius: 22px;
      }
    }

    .who-item img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      display:block;
      background: #fff;
    }

@keyframes whoScroll{
      from{ transform: translateX(0); }
      to{ transform: translateX(-50%); }
    }


    /*--------------------------------------------------------------
    # GALERÍA (carousel ultra pulido)
    --------------------------------------------------------------*/
    .gal-gallery .carousel {
      max-width: 1100px;
      margin: 0 auto;
    }

    .gal-frame {
      height: clamp(320px, 60vh, 550px);
      background: var(--bg-alt);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .gal-img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      cursor: zoom-in;
      transition: var(--transition);
    }

    .gal-img:hover {
      opacity: 0.95;
      transform: scale(1.01);
    }

    .gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 100px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  z-index: 5;
}

.gal-gallery .carousel-control-prev { left: 14px; }
.gal-gallery .carousel-control-next { right: 14px; }

    .gal-gallery .carousel-control-prev:hover,
    .gal-gallery .carousel-control-next:hover {
      background: var(--accent);
      transform: translateY(-50%) scale(1.1);
      border-color: var(--accent);
    }

    .gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon {
  /* Bootstrap trae los íconos en blanco; como el botón es blanco no se ven.
     Invertimos para que queden oscuros y siempre visibles. */
  filter: invert(1) grayscale(1);
  width: 1.35rem;
  height: 1.35rem;
}

    .gal-gallery .carousel-indicators {
      bottom: -3.5rem;
      gap: 0.5rem;
    }

    .gal-gallery .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 100px;
      background: var(--muted);
      opacity: 0.4;
      transition: var(--transition);
    }

    .gal-gallery .carousel-indicators button.active {
      background: var(--accent);
      opacity: 1;
      width: 32px;
    }

    #galLightbox .modal-content {
      background: rgba(0, 0, 0, 0.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
    }

    #galLightboxImg {
      max-height: 90vh;
      object-fit: contain;
    }

    

/*--------------------------------------------------------------
# WHO TICKER LIGHTBOX (modal para ver imágenes completas)
--------------------------------------------------------------*/
#whoGalleryModal .modal-content{
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0;
}
#whoGalleryImg{
  max-height: 90vh;
  object-fit: contain;
  display:block;
  margin: 0 auto;
}
#whoGalleryCaption{
  color: rgba(255,255,255,0.75);
  font-size: .95rem;
}

    .gal-lightbox-nav {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      width: 64px;
      height: 64px;
      border-radius: 100px;
      font-size: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: var(--transition-bounce);
      z-index: 1060;
    }

    .gal-lightbox-nav:hover {
      background: white;
      color: black;
      transform: scale(1.1);
    }

    /*--------------------------------------------------------------
    # CONTACTO (form con microinteracciones)
    --------------------------------------------------------------*/
    .contact-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      background: white;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .contact-side {
      background: linear-gradient(145deg, var(--bg-alt), white);
      height: 100%;
      border-right: 1px solid var(--border);
      padding: 2.5rem !important;
    }

    .form-control, .form-select {
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 1rem 1.3rem;
      background: var(--bg-alt);
      transition: var(--transition);
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 6px var(--accent-soft);
      outline: none;
      background: white;
    }

    .btn-submit {
      background: var(--accent);
      color: var(--ink);
      border: none;
      border-radius: 100px;
      padding: 1.2rem 2rem;
      font-weight: 700;
      transition: var(--transition-bounce);
    }

    .btn-submit:hover {
      background: #000;
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-md);
    }

    /*--------------------------------------------------------------
    # FOOTER (profundo)
    --------------------------------------------------------------*/
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.85);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    footer a {
      color: rgba(255, 255, 255, 0.8);
      transition: var(--transition);
    }

    footer a:hover {
      color: white;
      text-decoration: underline;
      opacity: 1;
    }

    /*--------------------------------------------------------------
    # ACCORDION (FAQs premium)
    --------------------------------------------------------------*/
    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 20px !important;
      overflow: hidden;
      margin-bottom: 1rem;
      background: white;
    }

    .accordion-button {
      padding: 1.5rem 1.8rem;
      font-weight: 650;
      color: var(--ink);
      background: white;
    }

    .accordion-button:not(.collapsed) {
      background: var(--accent-soft);
      color: var(--ink);
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 4px var(--accent-soft);
      border-color: var(--accent);
    }

    .accordion-body {
      padding: 1.5rem 1.8rem;
      color: var(--muted);
    }

    /*--------------------------------------------------------------
    # RESPONSIVE FINE TUNING
    --------------------------------------------------------------*/
    @media (max-width: 768px) {
      .hero-img-wrap {
        border-left: none;
        border-top: 1px solid var(--border);
      }
      .contact-side {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
      .navbar-brand {
        font-size: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }

    /* scroll personalizado (opcional) */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg-alt);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 100px;
      border: 2px solid var(--bg-alt);
    }

    html, body { overflow-x: hidden; }

    /* Evita overflow horizontal en mobile por marca/botones */
    @media (max-width: 576px){
      .navbar .container{ max-width: 100%; }
      .navbar-brand{ max-width: calc(100% - 64px); }
      .navbar-brand span{
        display:block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      /* menú colapsado prolijo */
      .navbar-collapse{
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(16px) saturate(160%);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 12px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===== HERO FIX MOBILE FULL WIDTH ===== */
@media (max-width: 576px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero .container,
  .hero .container-fluid {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}

/* ===== INLINE <style> BLOCK #3 ===== */
/* WhatsApp flotante (no pisa tus estilos) */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  font-family:inherit;
}

.wa-btn{
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,#25D366,#128C7E); /* ✅ verde oficial */
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  transition:transform .3s, box-shadow .3s;
}

.wa-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 14px 36px rgba(37,211,102,.55);
}

.wa-card{
  position:absolute;
  right:0;
  bottom:74px;
  width:min(360px,92vw);
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  transition:.25s ease;
}

.wa-card[aria-modal="true"]{ transform:none; opacity:1; }

.wa-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background:linear-gradient(135deg,#0ea5a8,#0b7285); /* header neutro y prolijo */
  color:#fff;
}

.wa-avatar{
  width:40px;
  height:40px;
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.wa-title{ font-weight:800; line-height:1; }
.wa-status{ font-size:.85rem; opacity:.9; }

.wa-close{
  margin-left:auto;
  border:none;
  background:transparent;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  line-height:1;
}

.wa-body{
  padding:14px;
  max-height:40vh;
  overflow:auto;
  background:#f6f7f8;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.wa-bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  font-size:.95rem;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.wa-bot{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  align-self:flex-start;
}

.wa-user{
  background:#e9fbf0;
  border:1px solid rgba(37,211,102,.25);
  align-self:flex-end;
}

.wa-compose{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:10px;
  border-top:1px solid rgba(0,0,0,.08);
  background:#fff;
}

.wa-compose textarea{
  resize:none;
  border-radius:12px;
  padding:10px;
  border:1px solid rgba(0,0,0,.12);
  font-family:inherit;
  outline:none;
}

.wa-compose textarea:focus{
  border-color:rgba(37,211,102,.6);
  box-shadow:0 0 0 4px rgba(37,211,102,.12);
}

.wa-send{
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:12px;
  padding:0 16px;
  cursor:pointer;
}

.wa-send:hover{ background:#1fb956; }

@media(max-width:480px){
  .wa-card{ width:calc(100vw - 24px); }
}

