/* MIXED CSS PACK */
/* Template: clusterhr360.com.ar/index.html */
/* Template mtime: 2025-10-02 14:12:06 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* external link (no embedded): https://unpkg.com/aos@2.3.1/dist/aos.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #3f37c9;
      --primary-dark: #2a27a8;
      --primary-light: #6c63ff;
      --secondary: #f8f9fa;
      --accent: #4cc9f0;
      --accent-dark: #2bb4d9;
      --dark: #1a1a1a;
      --dark-light: #2d2d2d;
      --light: #ffffff;
      --gray: #6c757d;
      --gray-light: #f5f7fb;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 15px 40px rgba(63, 55, 201, 0.15);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light);
      color: var(--dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: var(--gray-light);
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }

    /* Navbar */
    .navbar {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 18px 0;
      transition: all 0.4s ease;
    }
    
    .navbar.scrolled {
      padding: 12px 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .navbar-brand {
      font-weight: 800;
      color: var(--primary) !important;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
    }
    
    .navbar-brand span {
      color: var(--accent);
      font-weight: 900;
    }
    
    .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      margin: 0 8px;
      position: relative;
      transition: all 0.3s ease;
      padding: 8px 12px !important;
      border-radius: 6px;
    }
    
    .nav-link:hover {
      color: var(--primary) !important;
      background: rgba(63, 55, 201, 0.05);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background: var(--gradient-accent);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
      border-radius: 3px;
    }
    
    .nav-link:hover::after {
      width: 70%;
    }
    
    .nav-link.active {
      color: var(--primary) !important;
      font-weight: 600;
    }
    
    .nav-link.active::after {
      width: 70%;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      box-shadow: none !important;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(63, 55, 201, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Hero Section (sin overlay celeste) */
  #hero {
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?q=80&w=2070&auto=format&fit=crop')
                center center/cover no-repeat; /* ← solo la foto */
    color: var(--light);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  /* (opcional) eliminar la ola inferior */
  #hero::before {
    content: none;            /* quita el overlay ondulado */
  }
  
  .hero-content {
    max-width: 700px;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
  }
  
  .hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
  }
  
  .hero-img img {
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.15);
  }
  
  @keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
  }

    
    .particles-container {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
    }

    /* Secciones */
    .section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 5px;
      background: var(--gradient-accent);
      bottom: -12px;
      left: 0;
      border-radius: 3px;
    }
    
    .section-title.center::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .section-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      margin-bottom: 3rem;
      max-width: 700px;
    }
    
    .section-subtitle.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    
    /* Servicios */
    #servicios {
      background-color: var(--light);
    }
    
    .service-card {
      background: var(--light);
      border-radius: 18px;
      padding: 35px 30px;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 5px;
      background: var(--gradient-primary);
      top: 0;
      left: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }
    
    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-hover);
    }
    
    .service-card:hover::before {
      transform: scaleX(1);
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient-primary);
      color: var(--light);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 25px;
      box-shadow: 0 10px 20px rgba(63,55,201,0.2);
      transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .service-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .service-text {
      color: var(--gray);
      margin-bottom: 0;
    }

    /* Método */
    #metodo {
      background-color: var(--gray-light);
      position: relative;
      overflow: hidden;
    }
    
    #metodo::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: var(--gradient-accent);
      opacity: 0.05;
      border-radius: 50%;
      top: -150px;
      right: -150px;
    }
    
    #metodo::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background: var(--gradient-primary);
      opacity: 0.05;
      border-radius: 50%;
      bottom: -100px;
      left: -100px;
    }
    
    .method-step {
      position: relative;
      padding-left: 90px;
      margin-bottom: 50px;
    }
    
    .step-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 70px;
      height: 70px;
      background: var(--gradient-primary);
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(63,55,201,0.2);
    }
    
    .step-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary);
    }
    
    .step-text {
      color: var(--gray);
      margin-bottom: 0;
    }
    
    .method-img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      overflow: hidden;
      transform: perspective(1000px) rotateY(-5deg);
      transition: all 0.4s ease;
    }
    
    .method-img:hover {
      transform: perspective(1000px) rotateY(0deg);
    }

    /* Beneficios */
    #beneficios {
      background: var(--gradient-dark);
      color: var(--light);
      position: relative;
      overflow: hidden;
    }
    
    #beneficios::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZD0iTTAgMGw2MCA2ME02MCAwTDAgNjAiLz48L2c+PC9zdmc+');
      z-index: 0;
    }
    
    #beneficios .section-title {
      color: var(--light);
    }
    
    #beneficios .section-title::after {
      background: var(--accent);
    }
    
    #beneficios .section-subtitle {
      color: rgba(255,255,255,0.85);
    }
    
    .benefit-item {
      display: flex;
      margin-bottom: 35px;
      align-items: flex-start;
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      background: var(--accent);
      color: var(--dark);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-right: 20px;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(76,201,240,0.3);
    }
    
    .benefit-content {
      flex: 1;
    }
    
    .benefit-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
    .benefit-text {
      opacity: 0.85;
      margin-bottom: 0;
    }

    /* Contacto */
    .contact-info {
      margin-bottom: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      color: var(--light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 15px;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(63,55,201,0.2);
    }
    
    .contact-text {
      flex: 1;
    }
    
    .contact-title {
      font-weight: 600;
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .contact-link {
      color: var(--dark);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .contact-link:hover {
      color: var(--primary);
    }
    
    .contact-form {
      background: var(--light);
      padding: 40px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      position: relative;
      z-index: 1;
    }
    
    .form-control {
      height: 55px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.1);
      padding-left: 20px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }
    
    .form-control:focus {
      box-shadow: 0 0 0 3px rgba(63,55,201,0.15);
      border-color: var(--primary);
    }
    
    textarea.form-control {
      height: auto;
      padding-top: 15px;
      resize: none;
    }
    
    /* Botones */
    .btn-primary {
      background: var(--gradient-primary);
      border: none;
      color: var(--light);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(63,55,201,0.2);
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(63,55,201,0.3);
      color: var(--light);
    }
    
    .btn-outline-primary {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }
    
    .btn-outline-primary:hover {
      background: var(--primary);
      color: var(--light);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(63,55,201,0.2);
    }
    
    .btn-accent {
      background: var(--gradient-accent);
      border: none;
      color: var(--dark);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(76,201,240,0.2);
    }
    
    .btn-accent:hover {
      background: var(--accent-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(76,201,240,0.3);
      color: var(--dark);
    }
    /* LinkedIn Botón flotante */
    .linkedin-float{
      position: fixed;
      bottom: 170px; right: 30px;
      background-color: #0a66c2; /* LinkedIn */
      color: #fff;
      border-radius: 50px;
      width: 60px; height: 60px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      box-shadow: 0 5px 15px rgba(10,102,194,0.3);
      z-index: 997;
      transition: all .3s ease;
    }
    .linkedin-float:hover{ transform: scale(1.1); box-shadow: 0 8px 25px rgba(10,102,194,0.4); width: 220px; }
    .linkedin-text{ display: none; margin-left: 10px; font-size: 16px; font-weight: 600; }
    .linkedin-float:hover .linkedin-text{ display: inline-block; }
    
    /* Facebook Botón flotante */
    .facebook-float{
      position: fixed;
      bottom: 240px; right: 30px;
      background-color: #1877f2; /* Facebook */
      color: #fff;
      border-radius: 50px;
      width: 60px; height: 60px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      box-shadow: 0 5px 15px rgba(24,119,242,0.3);
      z-index: 996;
      transition: all .3s ease;
    }
    .facebook-float:hover{ transform: scale(1.1); box-shadow: 0 8px 25px rgba(24,119,242,0.4); width: 220px; }
    .facebook-text{ display: none; margin-left: 10px; font-size: 16px; font-weight: 600; }
    .facebook-float:hover .facebook-text{ display: inline-block; }
    
    /* Mobile: mismos compactos que WA/IG */
    @media (max-width: 575.98px){
      .linkedin-float:hover, .facebook-float:hover{ width: 60px; }
      .linkedin-text, .facebook-text{ display: none !important; }
    }

    /* WhatsApp Botón flotante */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: white;
      border-radius: 50px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 5px 15px rgba(37,211,102,0.3);
      z-index: 999;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37,211,102,0.4);
      width: 220px;
    }
    
    .whatsapp-text {
      display: none;
      margin-left: 10px;
      font-size: 16px;
      font-weight: 600;
    }
    
    .whatsapp-float:hover .whatsapp-text {
      display: inline-block;
    }

    /* Instagram Botón flotante */
    .instagram-float {
      position: fixed;
      bottom: 100px;
      right: 30px;
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: white;
      border-radius: 50px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
      z-index: 998;
      transition: all 0.3s ease;
    }
    
    .instagram-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
      width: 220px;
    }
    
    .instagram-text {
      display: none;
      margin-left: 10px;
      font-size: 16px;
      font-weight: 600;
    }
    
    .instagram-float:hover .instagram-text {
      display: inline-block;
    }

    /* Footer */
    footer {
      background: var(--gradient-dark);
      color: var(--light);
      padding: 100px 0 30px;
      position: relative;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 800;
      color: var(--light);
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .footer-logo span {
      color: var(--accent);
    }
    
    .footer-about {
      margin-bottom: 30px;
    }
    
    .footer-about p {
      opacity: 0.7;
      margin-bottom: 20px;
    }
    
    .footer-links h5 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .footer-links h5::after {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background: var(--accent);
      bottom: -8px;
      left: 0;
      border-radius: 2px;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: var(--light);
      padding-left: 8px;
    }
    
    .footer-contact h5 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .footer-contact h5::after {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background: var(--accent);
      bottom: -8px;
      left: 0;
      border-radius: 2px;
    }
    
    .footer-contact p {
      opacity: 0.7;
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
    }
    
    .footer-contact i {
      margin-right: 12px;
      color: var(--accent);
      font-size: 1.1rem;
      margin-top: 3px;
    }
    
    .footer-social {
      display: flex;
      margin-top: 25px;
    }
    
    .footer-social a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      color: var(--light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background: var(--accent);
      transform: translateY(-5px);
      color: var(--dark);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      margin-top: 60px;
      text-align: center;
    }
    
    .footer-bottom p {
      opacity: 0.6;
      margin-bottom: 0;
      font-size: 0.95rem;
    }
    
    .map-container {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--shadow);
      height: 100%;
    }
    
    iframe {
      width: 100%;
      height: 100%;
      min-height: 250px;
      border: none;
    }

    /* Animaciones */
    .animate-up {
      animation: fadeInUp 1s ease-in-out;
    }
    
    .animate-down {
      animation: fadeInDown 1s ease-in-out;
    }
    
    .animate-left {
      animation: fadeInLeft 1s ease-in-out;
    }
    
    .animate-right {
      animation: fadeInRight 1s ease-in-out;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    .delay-4 {
      animation-delay: 0.8s;
    }
    
    /* Particles */
    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      animation: float-particle 15s infinite linear;
    }
    
    @keyframes float-particle {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
      }
    }
    
    /* Responsive */
    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 3.2rem;
      }
    }
    
    @media (max-width: 991.98px) {
      .navbar-brand {
        font-size: 1.6rem;
      }
      
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .section {
        padding: 80px 0;
      }
      
      .section-title {
        font-size: 2.4rem;
      }
      
      .method-step {
        padding-left: 80px;
      }
      
      .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 767.98px) {
      .navbar-brand {
        font-size: 1.5rem;
      }
      
      .hero-title {
        font-size: 2.4rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .section-subtitle {
        font-size: 1.1rem;
      }
      
      .service-card {
        padding: 25px 20px;
      }
      
      .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
      }
      
      .service-title {
        font-size: 1.4rem;
      }
      
      .method-step {
        padding-left: 70px;
        margin-bottom: 35px;
      }
      
      .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
      }
      
      .contact-form {
        padding: 30px 25px;
      }
      
      .footer-logo {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 575.98px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-btns .btn {
        width: 100%;
        margin-right: 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .method-step {
        padding-left: 0;
        padding-top: 70px;
      }
      
      .step-number {
        top: 0;
        left: 0;
      }
      
      .footer-links, .footer-contact {
        margin-bottom: 40px;
      }
      
      .whatsapp-float:hover, .instagram-float:hover {
        width: 60px;
      }
      
      .whatsapp-text, .instagram-text {
        display: none !important;
      }
    }
  
/* === Navbar compact tweaks (injected) === */
.navbar{ padding: 10px 0; }
.navbar.scrolled{ padding: 8px 0; }
.navbar-nav .nav-link{
  font-size: 0.95rem;
  padding: .45rem .6rem !important;
  white-space: nowrap;
}
/* Prevent any accidental horizontal scroll */
html, body { overflow-x: hidden; }



/* === Navbar compact v2 (injected) === */
.navbar{ padding: 8px 0; }
.navbar.scrolled{ padding: 6px 0; }
.navbar-brand{ font-size: .95rem; }
.brand-text{ font-size: .9rem; line-height:1; }
.logo-brand{ height: 22px; }
.navbar-nav{ gap: .25rem; }
.navbar-nav .nav-link{ font-size: .95rem; padding: .4rem .5rem !important; white-space: nowrap; }
.navbar-brand::after{ content: none !important; } /* quita cualquier chevron accidental */
@media (max-width: 576px){
  .brand-text{ font-size: .85rem; }
  .logo-brand{ height: 20px; }
}



/* === Wordmark image next to icon === */
.brand-wordmark{
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 576px){
  .brand-wordmark{ height: 22px; }
}

/* ===== INLINE <style> BLOCK #2 ===== */
.logo-brand{
  height: 28px;         /* ajustá si lo querés más grande/chico */
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 576px){
  .logo-brand{ height: 34px; }
}
/* (Opcional) si necesitás que el texto no se deforme ni salte */
.navbar-brand{ white-space: nowrap; }

    /* Tamaño base del brand (Bootstrap lo sube, lo normalizamos) */
.navbar-brand { font-size: 1rem; }

/* Texto del brand más chico y prolijo */
.brand-text{
  font-size: 0.95rem;   /* bajalo/subilo a gusto */
  line-height: 1;
  letter-spacing: .1px;
  display: inline-block;
}
.brand-text strong{ font-weight: 700; } /* o 600 si lo querés menos pesado */

@media (max-width: 576px){
  .brand-text{ font-size: 0.9rem; }
  .logo-brand{ height: 22px; }
}

/* ===== INLINE <style> BLOCK #3 ===== */
/* ---------- Título con subrayado ---------- */
    #proposito .title-underline{position:relative}
    #proposito .title-underline::after{
      content:"";position:absolute;left:0;bottom:-10px;width:84px;height:4px;border-radius:4px;
      background:var(--primary,#5b57ff)
    }

    /* ---------- Imagen SIN recorte ---------- */
    #proposito .media-wrap{
      border-radius:16px; overflow:hidden; background:#fff; box-shadow:0 6px 16px rgba(0,0,0,.06);
      aspect-ratio:16/9; display:flex; align-items:center; justify-content:center;
    }
    #proposito .media-wrap img{width:100%;height:100%;object-fit:contain;background:#fff}

    /* ---------- Grilla de beneficios ---------- */
    #proposito .beneficios-grid{
      display:grid; gap:18px; margin-top:26px;
      grid-template-columns:repeat(3,1fr);
    }
    @media (max-width:1199.98px){ #proposito .beneficios-grid{grid-template-columns:repeat(2,1fr)} }
    @media (max-width:575.98px){  #proposito .beneficios-grid{grid-template-columns:1fr} }

    /* ---------- CARD de beneficio ---------- */
    #proposito .feature-card{
      position:relative; border:1px solid rgba(0,0,0,.08); background:#fff; border-radius:14px;
      padding:16px 18px; box-shadow:0 4px 14px rgba(0,0,0,.05);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex; gap:12px; align-items:flex-start; min-height:118px;
    }
    #proposito .feature-card:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 28px rgba(0,0,0,.08);
      border-color:rgba(0,0,0,.12);
    }
    /* Punto/ícono sin depender de librerías */
    #proposito .feature-card::before{
      content:""; flex:0 0 12px; height:12px; margin-top:6px; border-radius:50%;
      background:linear-gradient(135deg,var(--primary,#5b57ff), #7a7aff);
      box-shadow:0 0 0 4px rgba(91,87,255,.12);
    }
    #proposito .feature-card h6{margin:0 0 6px; font-weight:700}
    #proposito .feature-card p{margin:0; color:#6c757d}

    /* ---------- Callout lanzamiento ---------- */
    #proposito .callout{
      border:0; background:#eef3ff; color:#1b2b6b;
      box-shadow:0 1px 3px rgba(0,0,0,.06); border-radius:12px;
    }
    #proposito .lead{font-size:1.08rem; line-height:1.65}
    @media (max-width:991.98px){ #proposito .lead{font-size:1.02rem} }

/* ===== INLINE <style> BLOCK #4 ===== */
/* === Media arriba de cada card (con fallback elegante) === */
    #servicios .service-card{ overflow: visible; }
    #servicios .service-media{
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: 0 10px 24px rgba(0,0,0,.08);
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      position: relative;
    }
    #servicios .service-media img{
      width: 100%; height: 100%;
      object-fit: cover; display: block; background:#fff;
      transition: transform .5s ease;
    }
    #servicios .service-card:hover .service-media img{ transform: scale(1.03); }
    /* ocultamos el ícono redondo anterior */
    #servicios .service-icon{ display: none !important; }

/* ===== INLINE <style> BLOCK #5 ===== */
/* Contenedor del preview */
  .preview-shell{
    background:#fff; overflow:hidden;
  }
  .preview-chrome{
    height:44px; display:flex; align-items:center; gap:10px;
    padding:0 12px; background:linear-gradient(#f6f7f9,#eceff3);
    border-bottom:1px solid #e3e6ea;
  }
  .preview-chrome .dot{
    width:10px; height:10px; border-radius:50%; display:inline-block;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  }
  .preview-chrome .dot.red{background:#ff5f57;}
  .preview-chrome .dot.yellow{background:#ffbd2e;}
  .preview-chrome .dot.green{background:#28c840;}
  .preview-chrome .address{
    flex:1; height:28px; line-height:28px; padding:0 10px;
    border-radius:8px; background:#f1f3f5; font-size:12px; color:#667085;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  }
  .preview-chrome .open-btn{
    font-size:12px; padding:.35rem .7rem; border-radius:8px;
    background:#eef2ff; color:#4f46e5; text-decoration:none; border:1px solid #e0e7ff;
  }
  .preview-viewport{
    position:relative; overflow:hidden; background:#fff;
    /* Alto base del visor */
    height:min(65vh, 560px);
  }

  /* El truco: escalamos todo el wrapper, no el iframe suelto */
  .scaled-wrapper{
    transform-origin: top left;
    /* El scale se setea por JS para que quepa sin scroll */
  }
  .scaled-iframe{
    display:block; pointer-events:auto;
  }

  /* Bordes redondeados limpios */
  .preview-shell, .preview-viewport{ border-radius: 12px; }
  .preview-shell{ border:1px solid #e9ecef; }

  /* Ajustes finos en pantallas muy chicas */
  @media (max-width: 575.98px){
    .preview-viewport{ height: 420px; }
  }

