/* MIXED CSS PACK */
/* Template: soluciones-solucionar.com/index.html */
/* Template mtime: 2025-09-09 17:53:37 */

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

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #01a2a7;
      --primary-dark: #0047b3;
      --secondary: #026a9c;
      --dark: #1a1a2e;
      --light: #f8f9fa;
      --accent: #00d4ff;
      --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
      --gradient-dark: linear-gradient(135deg, var(--dark), #16213e);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    /* Navbar */
    .navbar {
      background: #1c678c;
      backdrop-filter: blur(10px);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      color: white !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: var(--secondary);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .navbar-toggler {
      border: none;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    /* Hero Section */
    header {
      background: var(--gradient-dark);
      color: white;
      padding: 120px 0 100px;
      position: relative;
      overflow: hidden;
    }
    
    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('img/herosol2.png') no-repeat center center/cover;
      opacity: 0.15;
      z-index: 0;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    .hero-title {
      font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      background: linear-gradient(to right, #fff, #c1d1ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    
      hyphens: none !important;
      overflow-wrap: normal;
      word-break: normal;
      white-space: normal;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .btn-primary-custom {
      background: var(--gradient-primary);
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    }
    
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
      color: white;
    }
    
    .btn-outline-custom {
      border: 2px solid white;
      color: white;
      font-weight: 600;
      padding: 10px 28px;
      border-radius: 50px;
      transition: all 0.3s ease;
      background: transparent;
    }
    
    .btn-outline-custom:hover {
      background: white;
      color: var(--dark);
      transform: translateY(-3px);
    }
    
    /* General Sections */
    section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-title {
      font-weight: 800;
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
      color: var(--dark);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 4px;
      bottom: -10px;
      left: 0;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    .bg-light-custom {
      background-color: var(--light);
    }
    
    /* About Section */
    .about-img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease;
    }
    
    .about-img:hover {
      transform: scale(1.03);
    }
    
    /* Services Section */
    .service-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      height: 100%;
      border-left: 4px solid var(--primary);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      border-left: 4px solid var(--secondary);
    }
    
    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .service-card:hover .service-icon {
      color: var(--secondary);
    }
    
    .service-title {
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    /* Why Choose Us */
    .feature-box {
      background: white;
      padding: 30px;
      border-radius: 15px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
    }
    
    .feature-title {
      font-weight: 700;
      margin-bottom: 15px;
    }
    
    /* Portfolio */
    .portfolio-container {
      position: relative;
      overflow: hidden;
    }
    
    .portfolio-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 70, 179, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }
    
    .portfolio-item:hover .portfolio-img {
      transform: scale(1.1);
    }
    
    .portfolio-title {
      color: white;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    /* FAQ */
    .accordion-button {
      font-weight: 600;
      padding: 20px;
    }
    
    .accordion-button:not(.collapsed) {
      background-color: rgba(0, 102, 255, 0.1);
      color: var(--primary);
    }
    
    .accordion-button:focus {
      box-shadow: none;
      border-color: rgba(0, 102, 255, 0.25);
    }
    
    .accordion-item {
      margin-bottom: 15px;
      border-radius: 10px !important;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Contact Form */
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
      padding: 15px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(0, 102, 255, 0.25);
    }
    
    textarea.form-control {
      min-height: 150px;
    }
    
    /* Footer */
    footer {
      background: var(--gradient-dark);
      color: white;
      padding: 80px 0 30px;
      position: relative;
    }
    
    .footer-logo {
      font-weight: 800;
      font-size: 2rem;
      margin-bottom: 20px;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }
    
    .footer-links h5 {
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }
    
    .footer-links h5::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      bottom: -10px;
      left: 0;
      background: var(--gradient-primary);
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
    }
    
    /* Animations */
    .animate-up {
      animation: fadeInUp 1s ease;
    }
    
    .animate-delay-1 {
      animation-delay: 0.2s;
    }
    
    .animate-delay-2 {
      animation-delay: 0.4s;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      section {
        padding: 80px 0;
      }
    }
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      section {
        padding: 60px 0;
      }
      
      .section-title {
        margin-bottom: 40px;
      }
    }
    
    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.8rem;
      }
      
      .btn-primary-custom, .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      
      .contact-form {
        padding: 30px 20px;
      }
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
  
/* ===== Mejoras de visibilidad: checkboxes de contacto ===== */
.service-choices{
  padding: 1rem 1rem .25rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 196, 255, 0.06), rgba(0,0,0,0));
  border: 1px solid rgba(0,0,0,.06);
}
.service-choices .form-check-input{
  width: 1.35rem;
  height: 1.35rem;
  accent-color: #00c8ff;  /* navegadores modernos */
  border: 2px solid #00a6c9; /* fallback */
  box-shadow: 0 0 0 2px rgba(0,200,255,.12);
}
.service-choices .form-check-input:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,200,255,.28);
}
.service-choices .form-check-label{
  font-weight: 600;
  margin-left: .5rem;
  letter-spacing: .2px;
}
.service-choices .col-md-6{ margin-bottom: .35rem; }
@media (max-width: 576px){
  .service-choices .form-check-input{ width: 1.5rem; height: 1.5rem; }
  .service-choices .form-check-label{ font-size: 1rem; }
}


/* ===== Validación UX servicios ===== */
.border-danger-shadow{
  box-shadow: 0 0 0 3px rgba(255, 0, 72, .22) inset, 0 4px 18px rgba(255,0,72,.16) !important;
  border: 1px solid rgba(255,0,72,.28) !important;
}
@keyframes shake-kf{ 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.shake{ animation: shake-kf .6s ease-in-out; }

/* ===== INLINE <style> BLOCK #2 ===== */
/* Ajustes exclusivos para #quienes */
    #quienes .feature-box {
      padding: 12px;
      text-align: center;
    }
  
    #quienes .feature-box .feature-icon i {
      font-size: 1.2rem;   /* íconos más chicos */
      line-height: 1;
    }
  
    #quienes .feature-box .feature-title {
      font-size: 0.95rem;  /* títulos más chicos */
      font-weight: 600;
      margin-top: 6px;
    }
  
    #quienes p {
      font-size: 0.95rem;  /* texto más compacto */
      line-height: 1.5;
    }

/* ===== INLINE <style> BLOCK #3 ===== */
.shot {
      flex: 0 0 auto;
      width: 100%;
      max-width: 500px;
      scroll-snap-align: start;
    }
  
    .shot img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
  
    .shot figcaption {
      display: none;
    }
  
    #tickerTrack {
      animation: scrollTicker linear infinite;
      animation-duration: 40s;
    }
  
    .ticker-container:hover #tickerTrack {
      animation-play-state: paused;
      cursor: grab;
    }
  
    @keyframes scrollTicker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
  
    @media (max-width: 768px) {
      #tickerTrack {
        animation-duration: 80s;
      }
    }

/* ===== INLINE <style> BLOCK #4 ===== */
.shot {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    scroll-snap-align: start;
  }

  .shot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .shot figcaption {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 8px;
    color: #333;
  }

  #tickerTrack {
    animation: scrollTicker linear infinite;
    animation-duration: 40s;
  }

  .ticker-container:hover #tickerTrack {
    animation-play-state: paused;
    cursor: grab;
  }

  @keyframes scrollTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @media (max-width: 768px) {
    #tickerTrack {
      animation-duration: 80s;
    }
  }

/* ===== INLINE <style> BLOCK #5 ===== */
/* Contenedor de botones flotantes */
  .social-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  align-items: flex-end;
  }
  
  /* Estilos base para todos los botones sociales */
  .social-float {
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  }
  
  .social-float:hover {
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  }
  
  .social-button {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  color: white;
  text-decoration: none;
  }
  
  .social-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  }
  
  .social-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite;
  }
  
  .social-pulse-delayed {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite 0.5s;
  }
  
  .social-tooltip {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  }
  
  .social-tooltip small {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  margin-top: 3px;
  }
  
  .tooltip-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid white;
  }
  
  .social-float:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
  }
  
  /* Estilos específicos para cada botón */
  .whatsapp-button {
  background: #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  }
  
  .whatsapp-button:hover {
  background: #128C7E;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  }
  
  .whatsapp-pulse {
  background: rgba(37, 211, 102, 0.6);
  }
  
  .whatsapp-pulse-delayed {
  background: rgba(37, 211, 102, 0.4);
  }
  
  .instagram-button {
  background: #E1306C;
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
  }
  
  .instagram-button:hover {
  background: #C13584;
  box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
  }
  
  .instagram-pulse {
  background: rgba(225, 48, 108, 0.6);
  }
  
  .instagram-pulse-delayed {
  background: rgba(193, 53, 132, 0.4);
  }
  
  .facebook-button {
  background: #1877F2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
  }
  
  .facebook-button:hover {
  background: #166FE5;
  box-shadow: 0 15px 30px rgba(22, 111, 229, 0.4);
  }
  
  .facebook-pulse {
  background: rgba(24, 119, 242, 0.6);
  }
  
  .facebook-pulse-delayed {
  background: rgba(22, 111, 229, 0.4);
  }
  
  /* Animaciones */
  @keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
  }
  
  @keyframes pulse {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
  }
  
  /* Efecto de latido al cargar */
  @keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
  }
  
  /* Animación inicial para los botones */
  .social-button {
  animation: heartbeat 1.5s ease 2s 2, float 3s ease-in-out infinite 3s;
  }
  
  /* Mostrar botones con un pequeño retraso entre ellos */
  .instagram-float { animation: fadeInUp 0.5s ease 0.2s both; }
  .facebook-float { animation: fadeInUp 0.5s ease 0.4s both; }
  .whatsapp-float { animation: fadeInUp 0.5s ease 0.6s both; }
  
  @keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .social-float-container {
    bottom: 20px;
    right: 20px;
  }
  
  .social-button {
    width: 60px;
    height: 60px;
  }
  
  .social-icon {
    font-size: 25px;
  }
  
  .social-tooltip {
    display: none;
  }
  }

