/* MIXED CSS PACK */
/* Template: canteraelias.com.ar/index.html */
/* Template mtime: 2026-01-29 12:57:00 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --accent: #0f6f73;
      --accent-dark: #0a5053;
      --accent-light: #e1f2f3;
      --ink: #0b0f12;
      --ink-light: #2c3238;
      --muted: rgba(11, 15, 18, 0.72);
      --muted-light: rgba(11, 15, 18, 0.56);
      --border: rgba(11, 15, 18, 0.12);
      --border-light: rgba(11, 15, 18, 0.06);
      --soft: rgba(15, 111, 115, 0.08);
      --soft-dark: rgba(15, 111, 115, 0.15);
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.08);
      --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.12);
      --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.15);
      --gradient-accent: linear-gradient(135deg, #0f6f73 0%, #13868b 100%);
      --gradient-light: linear-gradient(135deg, rgba(15, 111, 115, 0.1) 0%, rgba(19, 134, 139, 0.05) 100%);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      background: #fff;
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 80%, rgba(15, 111, 115, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(15, 111, 115, 0.02) 0%, transparent 50%);
      z-index: -1;
      pointer-events: none;
    }

    /* Tipografía mejorada */
    h1, h2, h3, h4, h5, h6 {
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .display-6 {
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      line-height: 1.1;
    }

    .lead {
      font-size: 1.15rem;
      font-weight: 400;
    }

    /* Navbar Premium */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.75rem 0;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gradient-accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 1.1rem;
      flex: 0 0 auto;
      box-shadow: 0 6px 15px rgba(15, 111, 115, 0.25);
      transition: var(--transition);
    }

    .navbar-brand:hover .brand-mark {
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 8px 20px rgba(15, 111, 115, 0.35);
    }

    .nav-link {
      color: var(--ink) !important;
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0.75rem !important;
      margin: 0 0.25rem;
      transition: color 0.3s ease;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.75rem;
      right: 0.75rem;
      height: 2px;
      background: var(--gradient-accent);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      transform: scaleX(1);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--accent) !important;
    }

    .btn-accent {
      background: var(--gradient-accent);
      border: none;
      color: white;
      border-radius: 50px;
      padding: 0.75rem 1.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 10px 25px rgba(15, 111, 115, 0.3);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn-accent::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .btn-accent:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(15, 111, 115, 0.4);
    }

    .btn-accent:hover::before {
      left: 100%;
    }

    .btn-outline-ink {
      border-radius: 50px;
      border: 2px solid var(--border);
      color: var(--ink);
      padding: 0.75rem 1.75rem;
      font-weight: 500;
      transition: var(--transition);
      background: white;
    }

    .btn-outline-ink:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* Secciones */
    section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background: var(--gradient-accent);
      border-radius: 2px;
    }

    .text-center .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.15rem;
    }

    .eyebrow {
      display: inline-block;
      font-weight: 700;
      color: var(--accent);
      background: var(--soft);
      border: 1px solid rgba(15, 111, 115, 0.18);
      border-radius: 50px;
      padding: 0.4rem 1.2rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(15, 111, 115, 0.1);
    }

    /* Hero Section - Completamente Rediseñada */
    #inicio {
      padding-top: 140px;
      padding-bottom: 100px;
      position: relative;
      overflow: hidden;
    }

    #inicio::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 150%;
      background: var(--gradient-light);
      border-radius: 50%;
      z-index: -1;
      opacity: 0.6;
    }

    .hero-wrap {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-elevated);
      overflow: hidden;
      background: white;
      position: relative;
      border: none;
      transition: var(--transition);
    }

    .hero-wrap:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
    }

    .hero-left {
      padding: clamp(2.5rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .hero-right {
      background: var(--gradient-light);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(15, 111, 115, 0.1) 0%, transparent 70%);
      z-index: 0;
    }

    .hero-img {
      width: 100%;
      height: auto;
      max-height: 420px;
      object-fit: contain;
      border-radius: var(--radius-md);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 1;
      transition: var(--transition);
    }

    .hero-img:hover {
      transform: scale(1.02);
    }

    .hero-bullets {
      list-style: none;
      padding-left: 0;
      margin-bottom: 2rem;
    }

    .hero-bullets li {
      margin-bottom: 0.75rem;
      color: var(--muted);
      padding-left: 1.75rem;
      position: relative;
    }

    .hero-bullets li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* KPI Cards */
    .kpi {
      border: 2px dashed rgba(15, 111, 115, 0.3);
      background: rgba(15, 111, 115, 0.05);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      color: var(--muted);
      transition: var(--transition);
      height: 100%;
    }

    .kpi:hover {
      border-color: var(--accent);
      background: rgba(15, 111, 115, 0.08);
      transform: translateY(-5px);
    }

    /* Cards Mejoradas */
    .cardx {
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-subtle);
      background: white;
      height: 100%;
      padding: 2rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .cardx::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--gradient-accent);
      transform: scaleY(0);
      transition: transform 0.4s ease;
    }

    .cardx:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-10px);
    }

    .cardx:hover::before {
      transform: scaleY(1);
    }

    .icon-badge {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-light);
      color: var(--accent);
      flex: 0 0 auto;
      font-size: 1.5rem;
      transition: var(--transition);
    }

    .cardx:hover .icon-badge {
      background: var(--gradient-accent);
      color: white;
      transform: rotate(10deg) scale(1.1);
    }

    /* Servicios Grid Mejorado */
    .service-card {
      height: 100%;
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-radius: var(--radius-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      background: var(--gradient-light);
      color: var(--accent);
      font-size: 1.8rem;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: var(--gradient-accent);
      color: white;
      transform: rotate(15deg) scale(1.1);
    }

    /* FAQ Accordion Premium */
    .accordion-item {
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      margin-bottom: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      transition: var(--transition);
    }

    .accordion-item:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .accordion-button {
      font-weight: 600;
      padding: 1.5rem;
      background: white;
      color: var(--ink);
      font-size: 1.05rem;
      border: none;
    }

    .accordion-button:not(.collapsed) {
      background: var(--accent-light);
      color: var(--accent-dark);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f6f73'%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");
      transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-body {
      padding: 1.5rem;
      color: var(--muted);
      background: white;
    }

    /* Formulario Mejorado */
    .form-control, .form-select {
      border-radius: var(--radius-sm);
      border: 2px solid var(--border-light);
      padding: 0.9rem 1.2rem;
      font-size: 1rem;
      transition: var(--transition);
      background: white;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(15, 111, 115, 0.15);
    }

    .form-label {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--ink-light);
    }

    /* Footer Premium */
    footer {
      border-top: 1px solid var(--border-light);
      padding: 4rem 0 2rem;
      background: #f9fbfc;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .foot-link {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
      padding-bottom: 3px;
    }

    .foot-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .foot-link:hover {
      color: var(--accent);
    }

    .foot-link:hover::after {
      width: 100%;
    }

  
    /* Animaciones y efectos */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll Progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 4px;
      background: var(--gradient-accent);
      z-index: 9999;
      transition: width 0.2s ease;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
      section {
        padding: 80px 0;
      }
      
      #inicio {
        padding-top: 120px;
      }
      
      .hero-right {
        min-height: 400px;
      }
      
      .display-6 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 767.98px) {
      section {
        padding: 60px 0;
      }
      
      .hero-left, .hero-right {
        padding: 2rem;
      }
      
      .display-6 {
        font-size: 2rem;
      }
      
      .cardx {
        padding: 1.5rem;
      }
    }

    @media (max-width: 575.98px) {
      .hero-right {
        min-height: 300px;
      }
      
      .btn-accent, .btn-outline-ink {
        width: 100%;
        margin-bottom: 0.5rem;
      }
      
      .gal-frame {
        height: 250px;
      }
    }
    /* FIX: Eyebrow siempre ARRIBA (nunca a la izquierda) */
.eyebrow{
  display: block !important;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1rem;      /* centra si está en text-center */
}

.text-center .eyebrow{
  margin: 0 auto 1rem;      /* mantiene centrado en títulos centrados */
}

/* Si el eyebrow cae dentro de un flex, lo hacemos "fila completa" */
.d-flex .eyebrow,
[class*="d-flex"] .eyebrow{
  flex: 0 0 100%;
  margin-bottom: 1rem;
}
/* ===== CONTACTO: container más angosto (FORZADO) ===== */
#contacto .contacto-container{
  max-width: 1040px !important;   /* probá 980px si lo querés más chico */
  width: 100% !important;
}

/* opcional: menos aire general del bloque */
#contacto{
  padding: 80px 0 !important;     /* antes 100px */
}

/* opcional: cards del contacto un poco más compactas */
#contacto .cardx{
  padding: 1.5rem !important;     /* antes 2rem */
}

/* ===== 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 ===== */
) -->
<style>
  /* Container un poco más compacto (opcional) */
  #contacto .contacto-container{
    max-width: 1100px;
  }

  /* La clave: NO estirar la card izquierda a la altura del form */
  #contacto .contacto-info{
    height: auto !important;
  }

  /* Opcional: bajar un toque padding para que se sienta menos "gigante" */
  #contacto .cardx{
    padding: 1.6rem;
  }

  /* En mobile, que no quede apretado */
  @media (max-width: 575.98px){
    #contacto .cardx{ padding: 1.25rem; }
  }

/* ===== INLINE <style> BLOCK #4 ===== */
/* Footer sólido */
  footer.footer-ce{
    background: #138287;
    color: #000;
    border-top: none;
    padding: 4rem 0 2rem;
  }

  /* Títulos y textos */
  footer.footer-ce .fw-bold,
  footer.footer-ce .fs-4,
  footer.footer-ce .fs-5{
    color:#000;
  }

  /* Texto “muted” pero en negro suave */
  footer.footer-ce .foot-muted{
    color: rgba(0,0,0,.78);
  }
  footer.footer-ce .foot-muted-light{
    color: rgba(0,0,0,.68);
  }

  /* Links */
  footer.footer-ce a.foot-link{
    color:#000;
    text-decoration:none;
    opacity:.9;
    transition: opacity .2s ease, transform .2s ease;
    position: relative;
    display: inline-block;
  }
  footer.footer-ce a.foot-link:hover{
    opacity:1;
    transform: translateX(2px);
  }
  footer.footer-ce a.foot-link::after{
    content:'';
    position:absolute;
    left:0; bottom:-2px;
    width:0; height:2px;
    background: rgba(0,0,0,.75);
    transition: width .25s ease;
  }
  footer.footer-ce a.foot-link:hover::after{
    width:100%;
  }

  /* Brand mark adaptado a fondo sólido */
  footer.footer-ce .brand-mark{
    background: rgba(255,255,255,.28);
    color:#000;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
  }

  /* Íconos */
  footer.footer-ce i{
    color:#000 !important;
    opacity:.9;
  }

  /* Línea separadora */
  footer.footer-ce hr{
    border-color: rgba(0,0,0,.22) !important;
  }

  /* Responsive */
  @media (max-width: 575.98px){
    footer.footer-ce{ padding: 3rem 0 1.5rem; }
  }

/* ===== INLINE <style> BLOCK #5 ===== */
.wa-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    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 .3s, box-shadow .3s;
  }
  .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 rgba(0,0,0,.10);
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    overflow:hidden;
    transform:translateY(10px);
    opacity:0;
    transition:.3s;
  }
  .wa-card[aria-modal="true"]{ transform:none; opacity:1; }
  
  .wa-head{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    background:linear-gradient(135deg,#0f6f73,#13868b);
    color:#fff;
  }
  .wa-avatar{
    width:40px;
    height:40px;
    background:#fff;
    border-radius:10px;
    display:grid;
    place-items:center;
    overflow:hidden;
  }
  .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;
    line-height:1;
  }
  
  .wa-body{
    padding:14px;
    max-height:40vh;
    overflow:auto;
    background:#f6f7f8;
    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:#ffffff;
    border:1px solid rgba(0,0,0,.08);
    align-self:flex-start;
  }
  .wa-user{
    background:#e1f2f3;
    border:1px solid rgba(15,111,115,.18);
    align-self:flex-end;
  }
  
  .wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px;
    border-top:1px solid rgba(0,0,0,.10);
    background:#fff;
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px;
    border:1px solid rgba(0,0,0,.10);
    font-family:inherit;
  }
  .wa-send{
    background:#0f6f73;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:0 16px;
    cursor:pointer;
  }
  .wa-send:hover{ background:#0a5053; }
  
  @media(max-width:480px){
    .wa-card{ width:calc(100vw - 24px); }
  }

