MIX · extractor de estilos
Template: cabanasvillasantina.com.ar/index.html · mtime: 2026-03-04 17:51
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 4 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: cabanasvillasantina.com.ar/index.html */
/* Template mtime: 2026-03-04 17:51:25 */

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

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #0f172a;
      --secondary: #475569;
      --accent-1: #16a34a;
      --accent-2: #2563eb;
      --accent-3: #f59e0b;
      --bg-light: #f8fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
      --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
      --shadow-xl: 0 30px 60px rgba(15, 23, 42, 0.15);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      color: var(--primary);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      width: 100%;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    section {
      scroll-margin-top: 80px;
      position: relative;
    }

    .container {
      max-width: 1200px;
      padding-left: 16px;
      padding-right: 16px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Background Elements */
    .bg-blur-1 {
      position: fixed;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
      filter: blur(60px);
      z-index: -1;
      pointer-events: none;
    }

    .bg-blur-2 {
      position: fixed;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      filter: blur(60px);
      z-index: -1;
      pointer-events: none;
    }

    /* NAVBAR - Premium - CORREGIDO */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      padding: 12px 0;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: var(--shadow-md);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--primary);
      margin-right: 0;
      max-width: 200px;
    }

    .brand-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      box-shadow: var(--shadow-md);
      flex-shrink: 0;
    }

    .navbar-toggler {
      border: none;
      padding: 8px;
      border-radius: var(--radius-sm);
      font-size: 1.5rem;
      color: var(--primary);
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    /* Menú corregido para móvil */
    .navbar-collapse {
      background: rgba(255, 255, 255, 0.98);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 10px;
      margin-top: 10px;
      max-height: 80vh;
      overflow-y: auto;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        z-index: 1000;
      }
    }

    .nav-link {
      font-weight: 500;
      color: var(--secondary);
      padding: 10px 14px !important;
      border-radius: var(--radius-sm);
      margin: 2px 0;
      transition: var(--transition);
      display: block;
      width: 100%;
    }

    .nav-link:hover {
      color: var(--accent-2);
      background: rgba(37, 99, 235, 0.05);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: var(--accent-2);
      background: rgba(37, 99, 235, 0.08);
      font-weight: 600;
    }

    /* Buttons */
    .btn-primary {
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      border: none;
      color: white;
      padding: 12px 24px;
      font-weight: 600;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
      opacity: 0;
      transition: var(--transition);
    }

    .btn-primary:hover::after {
      opacity: 1;
    }

    .btn-secondary {
      background: white;
      border: 1px solid var(--border);
      color: var(--primary);
      padding: 12px 24px;
      font-weight: 500;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--accent-2);
      color: var(--accent-2);
    }

    /* Hero Section - CORREGIDO */
    .hero-section {
      padding: 100px 0 40px;
      position: relative;
      overflow: hidden;
    }

    .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--secondary);
      margin-bottom: 24px;
      max-width: 600px;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: var(--radius-xl);
      padding: 24px;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(226, 232, 240, 0.5);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    }

    .feature-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid var(--border);
      padding: 6px 12px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.8rem;
      color: var(--primary);
      margin: 0 4px 8px 0;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .feature-chip:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--accent-2);
    }

    .feature-chip i {
      color: var(--accent-2);
    }

    /* Alert Banner */
    .alert-banner {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
      border: 1px solid rgba(245, 158, 11, 0.2);
      border-radius: var(--radius-lg);
      padding: 12px;
      margin: 16px 0;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.95; }
    }

    /* Imagen del Hero corregida */
    .hero-image-container {
      position: relative;
      width: 100%;
      height: 350px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-top: 20px;
    }

    .hero-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.5s ease;
    }

    .hero-image-container:hover img {
      transform: scale(1.05);
    }

    /* Section Headers */
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.1));
      color: var(--accent-2);
      padding: 6px 14px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 12px;
      color: var(--primary);
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--secondary);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Cards */
    .card-modern {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px;
      height: 100%;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .card-modern:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
      border-color: var(--accent-2);
    }

    .card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      opacity: 0;
      transition: var(--transition);
    }

    .card-modern:hover::before {
      opacity: 1;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.1));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 1.3rem;
      color: var(--accent-2);
    }

    /* Feature Grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }

    /* Gallery Styles */
    .gal-gallery {
      padding: 40px 0;
    }
    
    .gal-carousel {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .gal-frame {
      height: 300px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }
    
    .gal-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    
    .gal-img:hover {
      transform: scale(1.05);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      background: rgba(0,0,0,0.5);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 10px;
    }
    
    .carousel-indicators {
      bottom: -40px;
    }
    
    .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(0,0,0,0.5);
      border: none;
    }
    
    .carousel-indicators button.active {
      background: #000;
    }

    /* FAQ */
    .faq-accordion .accordion-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md) !important;
      margin-bottom: 10px;
      overflow: hidden;
      background: var(--bg-white);
    }

    .faq-accordion .accordion-button {
      background: var(--bg-white);
      color: var(--primary);
      font-weight: 600;
      padding: 16px 20px;
      border: none;
      box-shadow: none;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(37, 99, 235, 0.05));
      color: var(--accent-2);
    }

    .faq-accordion .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%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");
    }

    .faq-accordion .accordion-body {
      padding: 16px 20px;
      color: var(--secondary);
      border-top: 1px solid var(--border);
    }

    /* Contact Form */
    .contact-form .form-control,
    .contact-form .form-select {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 10px 14px;
      font-size: 1rem;
      transition: var(--transition);
      background: var(--bg-white);
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
      border-color: var(--accent-2);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      transform: translateY(-1px);
    }

    .contact-form label {
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--primary);
    }

    /* Footer */
    .footer {
      background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
      color: white;
      padding: 40px 0 20px;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    }

    .footer-brand {
      font-size: 1.3rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: white;
    }

    .footer-links h5 {
      color: white;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      display: block;
      margin-bottom: 8px;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-contact {
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 16px;
      margin-top: 16px;
      backdrop-filter: blur(10px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-section {
        padding: 80px 0 30px;
      }
      
      .hero-card {
        padding: 20px 16px;
      }
      
      .section-header {
        margin-bottom: 30px;
      }
      
      .feature-chip {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin: 0 3px 6px 0;
      }
      
      .btn-primary,
      .btn-secondary {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
      
      .hero-image-container {
        height: 280px;
      }
      
      .gal-frame {
        height: 250px;
      }
    }

    @media (max-width: 576px) {
      .container {
        padding-left: 12px;
        padding-right: 12px;
      }
      
      .feature-chip {
        width: calc(50% - 6px);
        margin-right: 6px;
        font-size: 0.7rem;
      }
      
      .hero-title {
        font-size: 1.75rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .navbar-brand {
        font-size: 1.1rem;
      }
      
      .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .card-modern {
        padding: 16px;
      }
      
      .gal-frame {
        height: 200px;
      }
    }

    @media (max-width: 360px) {
      .feature-chip {
        width: 100%;
        margin-right: 0;
      }
      
      .btn-primary,
      .btn-secondary {
        width: 100%;
        margin-bottom: 8px;
      }
    }

    /* Evitar overflow horizontal */
    .row {
      margin-left: 0;
      margin-right: 0;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
      padding-left: 8px;
      padding-right: 8px;
    }

    /* Asegurar que las imágenes sean responsivas */
    img {
      max-width: 100%;
      height: auto;
    }
    .navbar-brand {
  max-width: 320px;
  white-space: normal;
}

.brand-text {
  line-height: 1.1;
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #6c757d;
  display: block;
}

/* Desktop fino */
@media (min-width: 992px) {
  .navbar-brand {
    max-width: 360px;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }
}
.brand-logo {
  height: 40px;      /* ajustá acá el tamaño */
  width: auto;
  display: block;
}
.footer-logo {
  height: 36px;   /* ajustá a gusto */
  width: auto;
}

/* ===== INLINE <style> BLOCK #2 ===== */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
   .gal-frame{
     height: clamp(220px, 48vh, 440px);
     background:#fff;border-radius:16px;overflow:hidden;
     box-shadow:0 12px 28px rgba(0,0,0,.12);
     display:flex;align-items:center;justify-content:center;padding:8px
   }
   .gal-img{
     width:auto !important;max-width:100%;
     height:auto !important;max-height:100%;
     object-fit:contain !important;object-position:center;display:block;cursor:zoom-in
   }
   /* Controles circulares con más contraste */
   .gal-gallery .carousel-control-prev,
   .gal-gallery .carousel-control-next{
     z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);
     opacity:1;background:rgba(0,0,0,.55);border-radius:50%;margin:0 12px
   }
   .gal-gallery .carousel-control-prev{left:0}
   .gal-gallery .carousel-control-next{right:0}
   .gal-gallery .gal-ctrl-icon{width:2.6rem;height:2.6rem;background-size:60% 60%}
   /* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
   .gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
   .gal-gallery .carousel-indicators button{
     width:10px;height:10px;border-radius:50%;
     background:rgba(0,0,0,.5);border:none
   }
   .gal-gallery .carousel-indicators button.active{background:#000}
   .gal-gallery{padding-bottom:56px} /* espacio para indicadores */
   
   /* Modal */
   #galLightbox .modal-content{background:#000}
   #galLightboxImg{max-height:86vh;width:100%;height:auto;object-fit:contain;background:#000}
   .gal-lightbox-nav{
     position:absolute;top:50%;transform:translateY(-50%);
     border:0;width:44px;height:44px;border-radius:999px;
     background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;text-align:center;z-index:5;cursor:pointer
   }
   .gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
   .gal-lightbox-nav.gal-prev{left:10px}
   .gal-lightbox-nav.gal-next{right:10px}
   
   /* Pequeños ajustes móviles */
   @media (max-width: 575.98px){
     .gal-frame{height: clamp(200px, 40vh, 360px)}
   }

/* ===== INLINE <style> BLOCK #3 ===== */
/* Card contenedora */
       .vid-vertical-card{
         width: min(360px, 92vw);     /* en phone ocupa casi todo el ancho */
         border-radius: 18px;
         overflow: hidden;
         background: rgba(255,255,255,.9);
         border: 1px solid rgba(0,0,0,.08);
         box-shadow: 0 10px 25px rgba(0,0,0,.08);
       }
   
       /* Frame vertical (9:16) — evita el “contenedor gigante” */
       .vid-vertical-frame{
         position: relative;
         width: 100%;
         aspect-ratio: 9 / 16;       /* clave: vertical tipo celular */
         background: #000;
       }
   
       /* Video ocupa el frame */
       .vid-vertical{
         position: absolute;
         inset: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;           /* fill lindo (sin bordes negros) */
         display: block;
       }
   
       .vid-vertical-body{
         padding: 14px 16px 16px;
       }
   
       /* En desktop: un poquito más “fino” para que entren prolijos lado a lado */
       @media (min-width: 992px){
         .vid-vertical-card{
           width: 320px;
         }
       }
   
       /* En phone: más grande aún (pero sin romper) */
       @media (max-width: 576px){
         .vid-vertical-card{
           width: min(420px, 96vw);
         }
         .vid-vertical-body{
           padding: 14px 14px 16px;
         }
       }

/* ===== INLINE <style> BLOCK #4 ===== */
/* ===== WhatsApp Flotante – Villa Santina (modo claro) ===== */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  font-family:inherit;
}

/* Botón principal (verde oficial WhatsApp) */
.wa-btn{
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,#25D366,#128C7E);
  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);
}

/* Ventana */
.wa-card{
  position:absolute;
  right:0;
  bottom:74px;
  width:min(380px,92vw);
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 18px 60px rgba(2,6,23,.22);
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }

/* Header */
.wa-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(37,99,235,.12));
  border-bottom:1px solid rgba(15,23,42,.10);
  color:#0f172a;
}
.wa-avatar{
  width:40px;
  height:40px;
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  overflow:hidden;
}
.wa-title{ font-weight:900; letter-spacing:-.01em; }
.wa-status{ font-size:.83rem; color: rgba(15,23,42,.70); line-height:1.2; }

.wa-close{
  margin-left:auto;
  border:none;
  background:transparent;
  color:#0f172a;
  font-size:24px;
  cursor:pointer;
  width:38px;height:38px;border-radius:10px;
}
.wa-close:hover{ background: rgba(15,23,42,.06); }

/* Mensajes */
.wa-body{
  padding:14px;
  max-height:42vh;
  overflow:auto;
  background: #f6f8fb; /* claro */
  display:flex;
  flex-direction:column;
  gap:8px;
}
.wa-bubble{
  max-width:92%;
  padding:10px 12px;
  border-radius:14px;
  font-size:.95rem;
  box-shadow:0 4px 10px rgba(2,6,23,.06);
}
.wa-bot{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.10);
  align-self:flex-start;
  color: rgba(15,23,42,.92);
}
.wa-user{
  background:#eaf4f8;
  border:1px solid #cfe4ef;
  align-self:flex-end;
  color: rgba(15,23,42,.92);
}

/* Input */
.wa-compose{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:10px;
  border-top:1px solid rgba(15,23,42,.10);
  background:#ffffff;
}
.wa-compose textarea{
  resize:none;
  border-radius:12px;
  padding:10px;
  border:1px solid rgba(15,23,42,.14);
  font-family:inherit;
  outline:none;
}
.wa-compose textarea:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 .2rem rgba(37,99,235,.12);
}
.wa-send{
  background: linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:0 16px;
  cursor:pointer;
}
.wa-send:hover{ filter:brightness(.98); }

@media (max-width:480px){
  .wa-card{ width:calc(100vw - 24px); }
}

      
Manifest preview
{
    "template": "cabanasvillasantina.com.ar/index.html",
    "template_mtime": 1772646685,
    "template_mtime_human": "2026-03-04T17:51:25+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 4,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}