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

/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ============================================
    VARIABLES & RESET - PALETA INSTITUCIONAL
    ============================================ */
    :root {
      --accent: #0a2b4a;        /* Azul profundo */
      --accent-light: #1e3a5f;
      --accent-soft: #eef3f9;

      --white: #ffffff;
      --bg-light: #f8fafd;
      --text-primary: #1e293b;
      --text-secondary: #475569;
      --text-muted: #64748b;

      --border-light: #e2e8f0;
      --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 20px 32px -12px rgba(0, 0, 0, 0.12);
      --shadow-hover: 0 24px 40px -16px rgba(10, 43, 74, 0.2);

      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-full: 999px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text-primary);
      background: var(--bg-light);
      line-height: 1.5;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container, .container-fluid, .row, [class*='col-'] {
      min-width: 0;
    }

    a {
      text-decoration: none;
      transition: color 0.2s ease;
    }

    /* ============================================
    TIPOGRAFÍA Y UTILIDADES
    ============================================ */
    .section {
      padding: 100px 0;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 0.375rem 1rem;
      border-radius: var(--radius-full);
      margin-bottom: 1rem;
      border: 1px solid rgba(10, 43, 74, 0.1);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .section-title span {
      color: var(--accent);
      font-weight: 800;
    }

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

    /* ============================================
    BOTONES
    ============================================ */
    .btn-main, .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.8rem 2rem;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: var(--radius-full);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-main {
      background: var(--accent);
      color: var(--white);
      box-shadow: var(--shadow-md);
    }

    .btn-main:hover {
      background: var(--accent-light);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .btn-ghost {
      background: transparent;
      border-color: var(--border-light);
      color: var(--text-primary);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      background: var(--white);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    /* ============================================
    NAVBAR
    ============================================ */
    .navbar {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      padding: 0.75rem 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .navbar-brand img {
      height: 44px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
      transform: scale(1.02);
    }

    .navbar-nav .nav-link {
      color: var(--text-secondary);
      font-weight: 500;
      padding: 0.5rem 1rem;
      font-size: 0.95rem;
      transition: color 0.2s ease;
      position: relative;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .navbar-nav .nav-link:hover::after {
      transform: scaleX(1);
    }

    .navbar-nav .nav-link:hover {
      color: var(--accent);
    }

    .navbar-nav .btn-main {
      padding: 0.5rem 1.5rem;
      font-size: 0.9rem;
      margin-left: 0.5rem;
    }

    .navbar-nav .btn-main::after {
      display: none;
    }
    .navbar-toggler {
      border: 1px solid rgba(10, 43, 74, 0.16);
      padding: 0.45rem 0.7rem;
      border-radius: 12px;
      box-shadow: none !important;
      background: rgba(255,255,255,0.96);
      flex-shrink: 0;
    }
    .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(10, 43, 74, 0.12) !important;
      border-color: rgba(10, 43, 74, 0.22);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810,43,74,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse {
      min-width: 0;
    }

    /* ============================================
    HERO SECTION
    ============================================ */
    #inicio {
      position: relative;
      padding: 160px 0 100px;
      background: linear-gradient(135deg, var(--white) 0%, #f2f6fc 100%);
      overflow: hidden;
    }

    #inicio .container {
      position: relative;
      z-index: 2;
    }

    #inicio::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 70%;
      height: 90%;
      background: radial-gradient(circle, rgba(10, 43, 74, 0.03) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
    }

    .hero-copy p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin-bottom: 2rem;
    }

    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      max-width: 540px;
      margin-top: 2.5rem;
    }

    .hero-chip {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
      padding: 0.625rem 1.25rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }

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

    .hero-media-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-media {
      width: min(100%, 560px);
      min-height: clamp(320px, 46vw, 560px);
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: clamp(1.25rem, 3vw, 2.25rem);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.5);
      overflow: hidden;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 1rem;
      border-radius: calc(var(--radius-xl) - 0.5rem);
      background: radial-gradient(circle at 30% 30%, rgba(10, 43, 74, 0.04), transparent 70%);
      pointer-events: none;
    }

    .hero-media img {
      position: relative;
      z-index: 1;
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: min(440px, 70vh);
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,0.08));
      transition: transform 0.5s ease;
    }

    .hero-media:hover img {
      transform: scale(1.02);
    }

    /* ============================================
    CARDS (BASE)
    ============================================ */
    .about-card,
    .service-card,
    .why-card,
    .stats-card,
    .faq-wrap,
    .contact-card,
    .form-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
    }

    .service-card:hover,
    .why-card:hover,
    .stats-card:hover,
    .contact-card:hover,
    .form-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: transparent;
      transform: translateY(-4px);
    }

    .about-card,
    .contact-card,
    .faq-wrap {
      padding: 2rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .stats-card {
      padding: 1.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .stats-card strong {
      display: block;
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }

    .stats-card span {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .service-card,
    .why-card {
      padding: 2rem 1.75rem;
    }

    .icon-badge {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: var(--accent);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .service-card:hover .icon-badge,
    .why-card:hover .icon-badge {
      transform: scale(1.05) rotate(2deg);
      background: var(--accent);
      color: var(--white);
    }

    .service-card h3,
    .why-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }

    .service-card p,
    .why-card p,
    .about-card p,
    .contact-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .list-check {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .list-check div {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-primary);
      font-weight: 500;
      font-size: 0.95rem;
    }

    .list-check i {
      color: var(--accent);
      font-size: 1rem;
      width: 1.2rem;
    }

    /* ============================================
    GALERÍA - CORREGIDA (SIN BOTONES SUELTOS)
    ============================================ */
    .gal-gallery .carousel {
      max-width: 980px;
      margin-inline: auto;
      position: relative;
    }
    .gal-frame {
      height: clamp(260px, 50vh, 500px);
      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;
    }
    .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 .carousel-control-prev-icon,
    .gal-gallery .carousel-control-next-icon {
      filter: invert(1);
    }
    .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; }

    /* Lightbox (sin cambios) */
    #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; }

    /* ============================================
    FAQS
    ============================================ */
    .faq-wrap {
      padding: 2rem;
    }
    .accordion-item {
      border: none;
      border-bottom: 1px solid var(--border-light);
      background: transparent;
      margin-bottom: 0;
    }
    .accordion-item:last-child {
      border-bottom: none;
    }
    .accordion-button {
      font-weight: 600;
      color: var(--text-primary);
      background: transparent;
      box-shadow: none !important;
      padding: 1.25rem 0;
      font-size: 1rem;
    }
    .accordion-button:not(.collapsed) {
      color: var(--accent);
      background: transparent;
    }
    .accordion-button:focus {
      border-color: transparent;
    }
    .accordion-body {
      color: var(--text-secondary);
      padding: 0 0 1.25rem 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* ============================================
    CONTACTO
    ============================================ */
    .contact-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }
    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .contact-item .icon-badge {
      width: 48px;
      height: 48px;
      min-width: 48px;
      margin-bottom: 0;
      font-size: 1.5rem;
    }
    .contact-item strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }
    .contact-item span,
    .contact-item a {
      color: var(--text-primary);
      font-weight: 500;
      word-break: break-word;
    }
    .contact-item a:hover {
      color: var(--accent);
    }

    .form-card {
      padding: 2rem;
    }
    .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 0.4rem;
    }
    .form-control,
    .form-select {
      min-height: 50px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      padding: 0.6rem 1rem;
      font-size: 0.95rem;
      color: var(--text-primary);
      transition: all 0.2s ease;
      box-shadow: none;
    }
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }
    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      outline: none;
      box-shadow: 0 0 0 3px rgba(10, 43, 74, 0.1);
    }

    /* ============================================
    FOOTER
    ============================================ */
    footer {
      background: var(--accent);
      color: var(--white);
      padding: 60px 0 24px;
      margin-top: 2rem;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .footer-logo {
      height: 52px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: transform 0.3s ease;
    }
    .footer-brand:hover .footer-logo {
      transform: scale(1.02);
    }
    .footer-brand-text {
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--white);
    }
    .footer-title {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      color: var(--white);
      opacity: 0.9;
    }
    .footer-text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }
    .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-link {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-block;
    }
    .footer-link:hover {
      color: var(--white);
      transform: translateX(5px);
    }
    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 2.5rem 0 1.5rem;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }
    .footer-bottom a {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }
    .footer-bottom a:hover {
      color: var(--white);
    }

    /* ============================================
    RESPONSIVE
    ============================================ */
    @media (max-width: 991.98px) {
      html, body {
        max-width: 100%;
        overflow-x: hidden;
      }
      .section { padding: 72px 0; }
      #inicio { padding-top: 140px; }
      .hero-media { margin-top: 2rem; }
      .navbar {
        padding: 0.65rem 0;
      }
      .navbar > .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        column-gap: 0.75rem;
        row-gap: 0;
      }
      .navbar-brand {
        flex: 1 1 auto;
        max-width: calc(100% - 64px);
        min-width: 0;
        gap: 10px;
        margin-right: 0;
      }
      .navbar-brand span {
        display: block;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .navbar-toggler {
        margin-left: auto;
        position: relative;
        z-index: 1032;
      }
      .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        flex-basis: auto;
        overflow: hidden;
        background: rgba(255,255,255,.98);
        margin-top: 0;
        padding: 0.9rem 1rem 1rem;
        border-radius: 18px;
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-sm);
      }
      .navbar-collapse.collapse:not(.show) {
        display: none !important;
      }
      .navbar-collapse.collapsing {
        overflow: hidden;
      }
      .navbar-nav {
        width: 100%;
        align-items: stretch !important;
        gap: 0.15rem;
      }
      .navbar-nav .nav-item,
      .navbar-nav .btn-main {
        width: 100%;
      }
      .navbar-nav .nav-link {
        width: 100%;
        padding: 0.8rem 0.25rem;
        word-break: break-word;
        white-space: normal;
      }
      .navbar-nav .btn-main {
        margin-left: 0;
        margin-top: 0.65rem;
        justify-content: center;
      }
      .navbar-nav .nav-link::after { display: none; }
    }

    @media (max-width: 767.98px) {
      .hero-highlights { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    }

    @media (max-width: 575.98px) {
      .section { padding: 60px 0; }
      .navbar-brand { max-width: calc(100% - 64px); }
      .navbar-brand img { height: 38px; }
      .navbar-brand span { font-size: 0.96rem; }
      .hero-media {
        width: min(100%, 480px);
        min-height: clamp(280px, 62vw, 420px);
        padding: 1.25rem;
      }
      .about-card, .contact-card, .faq-wrap, .form-card { padding: 1.5rem; }
      .btn-main, .btn-ghost { width: 100%; }
      .hero-copy .d-flex { width: 100%; }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:2147483647;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-family:inherit;
}
.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 .25s, box-shadow .25s;
}
.wa-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-card{
  position:absolute;
  right:0;
  bottom:74px;
  width:min(360px,92vw);
  background:#fff;
  border-radius:18px;
  border:1px solid #e3e6ea;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  transition:.25s ease;
}
.wa-card[aria-modal="true"]{
  transform:none;
  opacity:1;
}
.wa-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
}
.wa-avatar{
  width:40px;
  height:40px;
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.wa-avatar img{
  width:26px;
  height:26px;
  object-fit:contain;
}
.wa-title{
  font-weight:800;
}
.wa-status{
  font-size:.85rem;
  opacity:.9;
}
.wa-close{
  margin-left:auto;
  border:none;
  background:transparent;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}
.wa-close:hover{
  opacity:1;
  background:rgba(255,255,255,.14);
}
.wa-body{
  padding:14px;
  max-height:40vh;
  overflow:auto;
  background:#f8f9fa;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.wa-bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  font-size:.95rem;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
  background:#fff;
  border:1px solid #e3e6ea;
  align-self:flex-start;
}
.wa-user{
  background:#eaf7f0;
  border:1px solid #cfeedd;
  align-self:flex-end;
}
.wa-compose{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:10px;
  border-top:1px solid #e3e6ea;
  background:#fff;
}
.wa-compose textarea{
  resize:none;
  border-radius:12px;
  padding:10px;
  border:1px solid #e3e6ea;
  font-family:inherit;
  outline:none;
}
.wa-send{
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:12px;
  padding:0 16px;
  cursor:pointer;
}
.wa-send:hover{
  background:#1fb85a;
}
@media(max-width:480px){
  .wa-float{
    right:12px;
    bottom:12px;
  }
  .wa-card{
    width:calc(100vw - 24px);
  }
}

      
Manifest preview
{
    "template": "construccionesvinentti.com.ar/index.html",
    "template_mtime": 1773768814,
    "template_mtime_human": "2026-03-17T17:33:34+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap",
        "https://unpkg.com/[email protected]/dist/aos.css"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap",
        "https://unpkg.com/[email protected]/dist/aos.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}