MIX · extractor de estilos
Template: georeserv.com/index.html · mtime: 2025-11-26 17:11
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 3 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: georeserv.com/index.html */
/* Template mtime: 2025-11-26 17:11:18 */

/* 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.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #111634;      /* azul oscuro cercano al del logo */
      --primary-soft: #e3e6f5;
      --primary-light: #1d2a5c;
      --accent: #f4a546;       /* naranja cercano al del logo */
      --accent-dark: #d8831c;
      --accent-light: #f9c68f;
      --bg: #ffffff;
      --bg-alt: #f8f9ff;
      --text-main: #111111;
      --text-muted: #666666;
      --border-soft: #e5e7f0;
      --radius-lg: 18px;
      --radius-xl: 24px;
      --shadow-soft: 0 18px 45px rgba(0,0,0,0.08);
      --shadow-medium: 0 12px 40px rgba(0,0,0,0.12);
      --shadow-large: 0 25px 50px rgba(0,0,0,0.15);
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
    }
    
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text-main);
      overflow-x: hidden;
      line-height: 1.6;
    }
html {
  overflow-x: hidden;
}

@media (max-width: 991.98px) {
  .navbar {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .navbar .container {
    max-width: 100%;
  }
  .navbar-toggler {
    margin-left: auto;
  }
}


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

    /* HEADER / NAVBAR */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: var(--transition);
    }
    
    .site-header.scrolled {
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: .65rem;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--primary);
      transition: var(--transition);
    }
    
    .navbar-brand:hover {
      transform: translateY(-1px);
    }
    
    .navbar-brand img {
      height: 46px;
      width: auto;
      display: block;
      transition: var(--transition);
    }
    
    .navbar-brand-sub {
      display: block;
      font-size: .68rem;
      color: var(--text-muted);
      margin-top: -4px;
      font-weight: 400;
    }
    
    .navbar-nav .nav-link {
      font-size: .95rem;
      font-weight: 500;
      padding: .35rem .9rem;
      border-radius: 999px;
      color: var(--text-muted);
      transition: var(--transition);
      position: relative;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: var(--primary);
      background: rgba(17,22,52,0.06);
      transform: translateY(-1px);
    }
    
    .navbar-nav .nav-link.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 6px 15px rgba(17,22,52,0.25);
    }
    
    .nav-cta {
      display: flex;
      align-items: center;
      gap: .35rem;
      padding: .45rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(17,22,52,0.15);
      font-size: .9rem;
      font-weight: 600;
      background: #fff;
      color: var(--primary);
      box-shadow: 0 8px 20px rgba(0,0,0,0.03);
      transition: var(--transition);
    }
    
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.08);
      border-color: var(--accent);
    }
    
    .nav-cta i {
      color: var(--accent);
      font-size: 1.1rem;
    }
    
    .nav-cta small {
      display: block;
      font-size: .7rem;
      color: var(--text-muted);
      margin-top: -2px;
      font-weight: 400;
    }

    /* LAYOUT GENERALES */
    .section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-narrow {
      max-width: 1100px;
      margin: 0 auto;
    }
    
    .section-eyebrow {
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: .8rem;
      display: inline-block;
      position: relative;
    }
    
    .section-eyebrow::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.2;
      color: var(--primary);
      margin-bottom: 1rem;
      position: relative;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 620px;
      line-height: 1.6;
    }

    /* HERO */
    .hero {
      padding-top: 120px;
      padding-bottom: 120px;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,165,70,0.08) 0%, rgba(244,165,70,0) 70%);
      z-index: 0;
    }
    
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      padding: 0 1rem;
    }
    
    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.15;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
    
    .hero-title span {
      color: var(--accent);
      position: relative;
    }
    
    .hero-title span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(244,165,70,0.2);
      z-index: -1;
    }
    
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
      max-width: 580px;
    }
    
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-bottom: 2rem;
    }
    
    .hero-badge {
      font-size: .85rem;
      padding: .4rem .9rem;
      border-radius: 999px;
      border: 1px solid rgba(17,22,52,.08);
      background: #fff;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: var(--text-muted);
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: var(--transition);
    }
    
    .hero-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      border-color: var(--accent-light);
    }
    
    .hero-badge i {
      color: var(--accent);
      font-size: 1rem;
    }
    
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: .9rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    
    .btn-main {
      border-radius: 999px;
      padding: .85rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      box-shadow: 0 14px 30px rgba(244,165,70,0.45);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn-main::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
    }
    
    .btn-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(244,165,70,0.55);
    }
    
    .btn-main:hover::before {
      opacity: 1;
    }
    
    .btn-ghost {
      border-radius: 999px;
      padding: .75rem 1.8rem;
      font-weight: 600;
      font-size: .95rem;
      border: 1px solid rgba(17,22,52,.17);
      background: #fff;
      color: var(--primary);
      transition: var(--transition);
    }
    
    .btn-ghost:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      border-color: var(--accent);
    }
    
    .hero-note {
      font-size: .9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    
    .hero-note::before {
      content: '✓';
      color: var(--accent);
      font-weight: bold;
    }

    .hero-figure {
      position: relative;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #ffffff 0%, #f0f2ff 100%);
      padding: 12px;
      box-shadow: var(--shadow-large);
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: var(--transition);
    }
    
    .hero-figure:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
    }
    
    .hero-figure-inner {
      border-radius: 18px;
      overflow: hidden;
      background: #000;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .hero-figure-inner::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(17,22,52,0.1) 0%, rgba(17,22,52,0.4) 100%);
      z-index: 1;
    }
    
    .hero-figure-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .hero-figure:hover .hero-figure-inner img {
      transform: scale(1.05);
    }
    
    .hero-chip {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(255,255,255,0.95);
      border-radius: 999px;
      padding: .4rem 1rem;
      font-size: .8rem;
      display: flex;
      align-items: center;
      gap: .4rem;
      color: var(--text-muted);
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      z-index: 2;
      backdrop-filter: blur(10px);
    }
    
    .hero-chip i {
      color: var(--accent);
    }

    /* QUIÉNES SOMOS */
    .about-section {
      background: var(--bg-alt);
      position: relative;
    }
    
    .about-section::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-soft), transparent);
    }
    
    .info-card {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 2.5rem 2rem;
      border: 1px solid rgba(17,22,52,0.06);
      box-shadow: var(--shadow-medium);
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-large);
    }
    
    .info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
    }
    
    .info-card p:last-child {
      margin-bottom: 0;
    }

    /* SERVICIOS */
    .services-section {
      position: relative;
    }
    
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem 2rem;
      margin-top: 2rem;
    }
    
    .service-item {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      font-size: 1rem;
      color: var(--text-main);
      padding: 1rem;
      border-radius: var(--radius-lg);
      transition: var(--transition);
    }
    
    .service-item:hover {
      background: var(--primary-soft);
      transform: translateX(5px);
    }
    
    .service-item-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(244,165,70,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-dark);
      flex-shrink: 0;
      font-size: 1.2rem;
      transition: var(--transition);
    }
    
    .service-item:hover .service-item-icon {
      background: rgba(244,165,70,0.25);
      transform: scale(1.1);
    }

    /* POR QUÉ ELEGIRNOS */
    .reasons-section {
      background: var(--bg-alt);
    }
    
    .reason-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .reason-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      padding: 1.8rem 1.5rem;
      background: #fff;
      box-shadow: var(--shadow-soft);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    
    .reason-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--accent-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    
    .reason-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-large);
    }
    
    .reason-card:hover::before {
      transform: scaleX(1);
    }
    
    .reason-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: rgba(17,22,52,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--primary);
      font-size: 1.5rem;
      transition: var(--transition);
    }
    
    .reason-card:hover .reason-icon {
      background: rgba(244,165,70,0.15);
      color: var(--accent);
    }
    
    .reason-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .5rem;
      color: var(--primary);
    }
    
    .reason-text {
      font-size: .95rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* FAQ */
    .faq-section {
      position: relative;
    }
    
    .faq-accordion .accordion-item {
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    
    .faq-accordion .accordion-button {
      font-weight: 600;
      font-size: 1rem;
      padding: 1.2rem 1.5rem;
      background: #fff;
      color: var(--primary);
      box-shadow: none;
    }
    
    .faq-accordion .accordion-button:not(.collapsed) {
      background: rgba(244,165,70,0.08);
      color: var(--primary);
    }
    
    .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='%23111634'%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(0);
      transition: var(--transition);
    }
    
    .faq-accordion .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='%23111634'%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(180deg);
    }
    
    .faq-accordion .accordion-body {
      font-size: .95rem;
      color: var(--text-muted);
      padding: 1rem 1.5rem 1.5rem;
    }

    /* CONTACTO */
    .contact-section {
      background: var(--bg-alt);
    }
    
    .contact-meta {
      font-size: .95rem;
      color: var(--text-main);
    }
    
    .contact-meta p {
      margin-bottom: .5rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    
    .contact-meta i {
      width: 20px;
      color: var(--accent);
      font-size: 1.1rem;
    }
    
    .contact-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      padding: 2rem;
      box-shadow: var(--shadow-medium);
      background: #fff;
      transition: var(--transition);
    }
    
    .contact-card:hover {
      box-shadow: var(--shadow-large);
    }
    
    .form-control, .form-select {
      border-radius: 12px;
      border-color: #d9dce8;
      font-size: .95rem;
      padding: .75rem 1rem;
      transition: var(--transition);
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 .2rem rgba(244,165,70,0.25);
    }

    /* FOOTER */
    .site-footer {
      border-top: 1px solid rgba(0,0,0,0.05);
      padding: 60px 0 30px;
      background: var(--primary);
      color: #fff;
      position: relative;
    }
    
    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--accent-dark));
    }
    
    .footer-brand {
      font-weight: 800;
      color: #fff;
      margin-bottom: .5rem;
      font-size: 1.3rem;
    }
    
    .footer-text {
      font-size: .9rem;
      color: rgba(255,255,255,0.7);
      max-width: 300px;
    }
    
    .footer-nav-title {
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .8rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: .9rem;
      color: rgba(255,255,255,0.7);
    }
    
    .footer-nav li {
      margin-bottom: .4rem;
    }
    
    .footer-nav a {
      color: rgba(255,255,255,0.7);
      transition: var(--transition);
    }
    
    .footer-nav a:hover {
      color: #fff;
      padding-left: 5px;
    }
    
    .footer-meta {
      font-size: .8rem;
      color: rgba(255,255,255,0.5);
      margin-top: 2rem;
      text-align: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* RESPONSIVE */
    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 991.98px) {
      .hero {
        padding-top: 100px;
      }
      
      .hero-title {
        font-size: 2.4rem;
      }
      
      .hero-figure {
        margin-top: 3rem;
        transform: none;
      }
      
      .section {
        padding: 80px 0;
      }
    }
    
    @media (max-width: 767.98px) {
      .hero-title {
        font-size: 2.1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .service-list {
        grid-template-columns: 1fr;
      }
      
      .reason-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 575.98px) {
      .hero {
        padding-top: 90px;
      }
      
      .section {
        padding: 70px 0;
      }
      
      .hero-title {
        font-size: 1.9rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }

/* ===== 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 ===== */
:root{
      --wa:#25D366;
      --wa-dark:#128C7E;
      --wa-text:#111111;
      --wa-muted:#666666;
      --wa-bg:#ffffff;
      --wa-border:#e4e4e4;
      /* header del chat en naranja del sitio */
      --wa-head:#f4a546;
    }
  
    .wa-float{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:9999;
      font-family:inherit;
    }
  
    .wa-btn{
      background:linear-gradient(135deg,var(--wa),var(--wa-dark));
      color:#fff;
      border:0;
      width:60px;
      height:60px;
      border-radius:50%;
      display:grid;
      place-items:center;
      box-shadow:0 10px 30px rgba(0,0,0,.25);
      cursor:pointer;
      transition:transform .3s, box-shadow .3s, background .3s;
      position:relative;
      overflow:hidden;
    }
    .wa-btn::after{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.25), rgba(255,255,255,0) 70%);
      opacity:0;
      transition:opacity .3s;
    }
    .wa-btn:hover{
      transform:translateY(-3px) scale(1.05);
      box-shadow:0 14px 36px rgba(0,0,0,.35);
    }
    .wa-btn:hover::after{ opacity:1; }
  
    .wa-card{
      position:absolute;
      right:0;
      bottom:74px;
      width:min(360px,92vw);
      background:var(--wa-bg);
      color:var(--wa-text);
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 18px 60px rgba(0,0,0,.25);
      border:1px solid var(--wa-border);
      transform:translateY(10px);
      opacity:0;
      transition:transform .3s, opacity .3s;
    }
    .wa-card[aria-modal="true"]{
      transform:translateY(0);
      opacity:1;
    }
  
    .wa-head{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px;
      background:var(--wa-head);
      border-bottom:1px solid var(--wa-border);
    }
  
    .wa-avatar{
      width:40px;
      height:40px;
      border-radius:8px;
      background:#fff;
      display:grid;
      place-items:center;
      border:1px solid var(--wa-border);
      overflow:hidden;
    }
  
    .wa-title{
      font-weight:700;
      font-size:1.05rem;
    }
  
    .wa-status{
      font-size:.85rem;
      color:var(--wa-muted);
      display:flex;
      align-items:center;
      gap:6px;
    }
    .wa-status::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--wa);
    }
  
    .wa-close{
      margin-left:auto;
      background:transparent;
      color:#000;
      border:0;
      font-size:24px;
      cursor:pointer;
      opacity:.6;
      width:32px;
      height:32px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s;
    }
    .wa-close:hover{
      opacity:1;
      background:rgba(0,0,0,.06);
    }
  
    .wa-body{
      padding:12px 14px;
      max-height:40vh;
      overflow:auto;
      background:#ffffff;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
  
    .wa-bubble{
      max-width:88%;
      padding:10px 12px;
      border-radius:14px;
      line-height:1.35;
      box-shadow:0 4px 10px rgba(0,0,0,.08);
      animation:fadeIn .25s ease;
      font-size:.95rem;
    }
  
    @keyframes fadeIn{
      from{opacity:0; transform:translateY(5px);}
      to{opacity:1; transform:none;}
    }
  
    .wa-bot{
      background:#f7f7f7;
      border:1px solid #e8e8e8;
      align-self:flex-start;
      border-bottom-left-radius:4px;
    }
  
    .wa-user{
      background:#e9fdf1;
      border:1px solid #c4f1d8;
      align-self:flex-end;
      border-bottom-right-radius:4px;
    }
  
    .wa-compose{
      display:grid;
      grid-template-columns:1fr auto;
      gap:8px;
      padding:10px;
      background:#fafafa;
      border-top:1px solid var(--wa-border);
    }
  
    .wa-compose textarea{
      resize:none;
      border-radius:12px;
      padding:10px 12px;
      border:1px solid var(--wa-border);
      background:#ffffff;
      color:var(--wa-text);
      outline:none;
      min-height:44px;
      font-family:inherit;
      font-size:.95rem;
      transition:.2s;
    }
  
    .wa-compose textarea:focus{
      border-color:var(--wa);
      box-shadow:0 0 0 2px rgba(37,211,102,.15);
    }
  
    .wa-send{
      background:var(--wa);
      color:#ffffff;
      border:0;
      border-radius:12px;
      padding:0 16px;
      font-weight:700;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s;
    }
  
    .wa-send:hover{
      background:var(--wa-dark);
      transform:scale(1.05);
    }
  
    .wa-body::-webkit-scrollbar{ width:6px; }
    .wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.02); border-radius:3px; }
    .wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.2); border-radius:3px; }
    .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.3); }
  
    @media (max-width:480px){
      .wa-float{ right:12px; bottom:12px; }
      .wa-card{ width:calc(100vw - 24px); right:0; }
    }

      
Manifest preview
{
    "template": "georeserv.com/index.html",
    "template_mtime": 1764177078,
    "template_mtime_human": "2025-11-26T17:11:18+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.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&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.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 3,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}