/* MIXED CSS PACK */
/* Template: azul/index.html */
/* Template mtime: 2025-09-01 20:27:28 */

/* 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.4.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/font-awesome/6.5.2/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {

      --azul-900: #0a4e8a;
      --azul-800: #0d5c9f;
      --azul-700: #0f6cc9;
      --azul-600: #1679db;
      --azul-500: #1e90ff;
      --azul-400: #4da6ff;
      --azul-300: #80bfff;
      --azul-200: #b3d9ff;
      --azul-100: #e0f0ff;
      --celeste-100: #eaf4ff;
      --gris-900: #111827;
      --gris-800: #1f2937;
      --gris-700: #374151;
      --gris-600: #4b5563;
      --gris-500: #6b7280;
      --gris-400: #9ca3af;
      --gris-300: #d1d5db;
      --gris-200: #e5e7eb;
      --gris-100: #f3f4f6;
      --gris-50: #f9fafb;
      
      --radius-lg: 16px;
      --radius-xl: 24px;
      --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
      --shadow-medium: 0 15px 40px rgba(0,0,0,.12);
      --shadow-large: 0 20px 50px rgba(0,0,0,.15);
      
      /* Transiciones */
      --transition-fast: 0.3s ease;
      --transition-normal: 0.5s ease;
      --transition-slow: 0.8s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      color: var(--gris-800);
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5em;
    }

    .text-brand { color: var(--azul-700); }
    .bg-brand { background: linear-gradient(135deg, var(--azul-900), var(--azul-700)); }
    
    /* Animaciones */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .animate-fadeIn {
      animation: fadeIn 1s var(--transition-normal) forwards;
      opacity: 0;
    }
    
    .animate-float {
      animation: float 3s ease-in-out infinite;
    }
    
    .animate-pulse-slow {
      animation: pulse 2s ease-in-out infinite;
    }
    
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    .delay-4 { animation-delay: 0.8s; }
    .delay-5 { animation-delay: 1s; }

    /* Navbar mejorada */
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(2, 31, 71, 0.08);
      padding: 0.8rem 0;
      transition: all var(--transition-fast);
    }
    
    .navbar.scrolled {
      padding: 0.5rem 0;
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
    }
    
    .navbar .nav-link {
      font-weight: 500;
      position: relative;
      margin: 0 0.5rem;
      transition: all var(--transition-fast);
    }
    
    .navbar .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--azul-500);
      transition: all var(--transition-fast);
      transform: translateX(-50%);
    }
    
    .navbar .nav-link:hover:after,
    .navbar .nav-link.active:after {
      width: 100%;
    }
    
    .btn-whatsapp {
      background: #25D366;
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      transition: all var(--transition-fast);
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover {
      background: #1db857;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* Hero mejorado */
    .hero {
      background: linear-gradient(135deg, var(--azul-900) 0%, var(--azul-700) 50%, var(--azul-500) 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      padding: 7rem 0 5rem;
    }
    
    .hero:before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      z-index: 1;
    }
    
    .hero:after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    
    .hero-badge {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      display: inline-block;
    }
    
    .hero-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-xl);
      padding: 2rem;
      color: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all var(--transition-normal);
    }
    
    .hero-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .btn-hero-primary {
      background: #fff;
      color: var(--azul-700);
      font-weight: 600;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      transition: all var(--transition-fast);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-hero-primary:hover {
      background: var(--gris-100);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .btn-hero-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
      font-weight: 500;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      transition: all var(--transition-fast);
    }
    
    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
    }

    /* Secciones */
    .section {
      padding: 6rem 0;
      position: relative;
    }
    
    .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--azul-900), var(--azul-700));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .section-subtitle {
      color: var(--gris-600);
      font-size: 1.2rem;
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .lead-muted {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .bullet-check li {
      padding-left: 2rem;
      position: relative;
      margin: 0.8rem 0;
      list-style: none;
    }
    
    .bullet-check li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--azul-700);
      font-weight: 900;
      width: 24px;
      height: 24px;
      background: var(--azul-100);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }
    
    .card-feature {
      border: none;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      transition: all var(--transition-normal);
      overflow: hidden;
      height: 100%;
      background: #fff;
    }
    
    .card-feature:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-medium);
    }
    
    .icon-lg {
      width: 70px;
      height: 70px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: var(--azul-100);
      color: var(--azul-700);
      font-size: 28px;
      margin-bottom: 1.5rem;
      transition: all var(--transition-normal);
    }
    
    .card-feature:hover .icon-lg {
      background: var(--azul-700);
      color: #fff;
      transform: rotate(5deg) scale(1.1);
    }

    /* Ticker/Galería mejorada */
    #trabajos {
      position: relative;
      overflow: hidden;
    }
    
    .ticker-container {
      position: relative;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      background: linear-gradient(180deg, #ffffff, #f6f9ff);
      border: 1px solid #e8eef8;
      overflow: hidden;
    }
    
    .ticker-track {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      overflow: hidden;
      scroll-behavior: smooth;
    }
    
    .ticker-item {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: min(92vw, 500px);
      height: min(92vw, 500px);
      background: #fff;
      border-radius: 16px;
      border: 1px solid #ebf0fa;
      box-shadow: 0 12px 24px rgba(15, 71, 145, 0.06);
      position: relative;
      overflow: hidden;
      transition: all var(--transition-normal);
    }
    
    .ticker-item:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 35px rgba(15, 71, 145, 0.1);
    }
    
    .ticker-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      display: block;
      transition: all var(--transition-normal);
    }
    
    .ticker-item:hover img {
      transform: scale(1.05);
    }
    
    .ticker-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.95);
      color: var(--azul-700);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transition: all var(--transition-fast);
    }
    
    .ticker-btn:hover {
      background: #fff;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .ticker-btn-prev {
      left: 20px;
    }
    
    .ticker-btn-next {
      right: 20px;
    }
    
    .ticker-controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 2rem;
    }
    
    .ticker-control-btn {
      background: var(--azul-100);
      color: var(--azul-700);
      border: none;
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      font-weight: 500;
      transition: all var(--transition-fast);
    }
    
    .ticker-control-btn:hover {
      background: var(--azul-700);
      color: #fff;
    }

    /* FAQs mejorado */
    .accordion-item {
      border: none;
      border-radius: var(--radius-lg) !important;
      margin-bottom: 1rem;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    
    .accordion-button {
      background: #fff;
      color: var(--gris-800);
      font-weight: 600;
      padding: 1.2rem 1.5rem;
      border: none;
      box-shadow: none;
    }
    
    .accordion-button:not(.collapsed) {
      background: var(--azul-100);
      color: var(--azul-700);
      box-shadow: none;
    }
    
    .accordion-button:after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a4e8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(-90deg);
      transition: transform 0.3s ease;
    }
    
    .accordion-button:not(.collapsed):after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a4e8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(0deg);
    }
    
    .accordion-body {
      padding: 1.2rem 1.5rem;
      background: #fff;
      color: var(--gris-700);
    }

    /* Contacto mejorado */
    .contact-card {
      border: none;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 2.5rem;
      background: #fff;
      height: 100%;
      transition: all var(--transition-normal);
    }
    
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }
    
    .form-control, .form-select {
      border: 1px solid var(--gris-300);
      border-radius: 12px;
      padding: 0.8rem 1.2rem;
      font-size: 1rem;
      transition: all var(--transition-fast);
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--azul-500);
      box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.15);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--azul-700), var(--azul-500));
      border: none;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      transition: all var(--transition-fast);
      box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    }
    
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--azul-800), var(--azul-600));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
    }
    
    .btn-outline-secondary {
      border: 1px solid var(--gris-300);
      border-radius: 50px;
      padding: 0.8rem 2rem;
      font-weight: 500;
      transition: all var(--transition-fast);
    }
    
    .btn-outline-secondary:hover {
      border-color: var(--azul-500);
      color: var(--azul-500);
      background: transparent;
    }

    /* Footer mejorado */
    footer {
      background: linear-gradient(135deg, var(--azul-900) 0%, var(--azul-800) 50%, var(--azul-700) 100%);
      color: #fff;
      padding: 5rem 0 2rem;
      position: relative;
      overflow: hidden;
    }
    
    footer:before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
    }
    
    footer:after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 50%;
    }
    
    footer h4 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #fff;
    }
    
    footer a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all var(--transition-fast);
      position: relative;
    }
    
    footer a:after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: #fff;
      transition: all var(--transition-fast);
    }
    
    footer a:hover {
      color: #fff;
    }
    
    footer a:hover:after {
      width: 100%;
    }
    
    .footer-divider {
      border-color: rgba(255, 255, 255, 0.1) !important;
      margin: 2.5rem 0;
    }

    /* Efectos de partículas para el fondo */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      animation: float 15s infinite linear;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .section {
        padding: 4rem 0;
      }
      
      .section-title {
        font-size: 2.4rem;
      }
      
      .hero {
        padding: 6rem 0 4rem;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .ticker-item {
        width: min(96vw, 500px);
        height: min(96vw, 500px);
      }
      
      .contact-card {
        padding: 1.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .ticker-btn {
        width: 40px;
        height: 40px;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===== Footer Azul Servicios (celestón fuerte) ===== */
.footer-azul{
  --celeste: #0d5ea3;
  --celeste-dark: #09497f;
  --tinta-clara: #ffffff;

  /* fuerza color de fondo */
  background: var(--celeste) !important;
  background-image: none !important;
  background-color: var(--celeste) !important;

  color: var(--tinta-clara);
  border-top: 0;
}

/* títulos y textos */
.footer-azul .brand{ color:#fff; font-weight:800; letter-spacing:.3px; margin-bottom:.35rem; }
.footer-azul .sub{ color: rgba(255,255,255,.9); }

/* secciones / links */
.footer-azul .section-title{
  color: #cde7ff;
  text-transform: uppercase; letter-spacing:.08em;
  font-weight:700; font-size:.8rem; margin-bottom:.9rem;
}
.footer-azul .footer-link{
  color:#fff; opacity:.95; text-decoration:none; transition:opacity .15s ease;
}
.footer-azul .footer-link:hover{ opacity:1; }

/* mapa y separador */
.footer-azul .map-thumb{
  border-radius:14px; overflow:hidden;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.footer-azul .divider{ border-color: rgba(255,255,255,.25) !important; opacity:1; }

/* redes */
.footer-azul .social{ display:flex; gap:.65rem; }
.footer-azul .social a{
  width:38px; height:38px; display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  color:#fff; border-radius:50%;
  text-decoration:none; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-azul .social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.35);
}

/* volver arriba */
.footer-azul .back-top{ color:#fff; text-decoration:none; font-weight:600; }
.footer-azul .back-top:hover{ color:#e9f4ff; }

@media (max-width:576px){
  .footer-azul .cols-top > [class*="col-"]{ margin-bottom:.35rem; }
}

/* ===== INLINE <style> BLOCK #3 ===== */
.social-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }
  .social-float .float-btn{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .social-float .float-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
  }
  .float-btn.whatsapp{ background: #25D366; }
  .float-btn.email{ background: #0d6efd; } /* azul Bootstrap */

