/* ========================================= */
/* PALETA (LA MISMA QUE TRAÍAMOS) */
/* ========================================= */
:root{
  --primary:#0c1933;

  --bg:#f2efe7;
  --surface:#ffffff;
  --surface-alt:#e7e1d2;

  --text:#1b1f24;
  --muted:#5f6b73;

  --ink:#0f141a;

  --accent:#b36a3c;
  --accent-ink:#ffffff;

  --link:#0b4f6c;

  --border:#cfc7b3;
  --border-2:#ddd6c6;

  --shadow:0 10px 22px rgba(15,20,26,.14);
  --shadow-soft:0 8px 16px rgba(15,20,26,.10);

  --radius:14px;
  --radius-sm:12px;

  --container:1120px;
}

/* ========================================= */
/* RESET / BASE */
/* ========================================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.section{
  padding:68px 0;
  background:transparent;
}
.section-alt{
  background:var(--surface-alt);
  border-top:1px solid var(--border-2);
  border-bottom:1px solid var(--border-2);
}

.section-head{
  max-width:920px;
  margin:0 0 26px 0;
}
.section-title{
  margin:0 0 10px 0;
  font-size:34px;
  letter-spacing:.2px;
  color:var(--primary);
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

/* ========================================= */
/* BOTONES / INPUTS */
/* ========================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:var(--primary);
  color:#ffffff;
  border-color:#0a142b;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{ background:#0a142b; }

.btn-ghost{
  background:var(--surface);
  color:var(--primary);
  border-color:var(--border);
}
.btn-ghost:hover{ background:rgba(179,106,60,.08); border-color:rgba(179,106,60,.35); }

.btn-accent{
  background:var(--accent);
  color:var(--accent-ink);
  border-color:#9f5d34;
  box-shadow:var(--shadow-soft);
}
.btn-accent:hover{ background:#9f5d34; }

.btn-ghost-dark{
  background:transparent;
  color:#ffffff;
  border-color:rgba(255,255,255,.60);
}
.btn-ghost-dark:hover{ background:rgba(255,255,255,.10); }

.btn-full{ width:100%; }

.label{
  display:block;
  font-size:13px;
  font-weight:800;
  color:inherit;
  margin:0 0 6px 0;
}

.input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  outline:none;
}
.input:focus{
  border-color:rgba(179,106,60,.65);
  box-shadow:0 0 0 3px rgba(179,106,60,.18);
}
.textarea{ resize:vertical; min-height:110px; }

/* ========================================= */
/* NAVBAR (NORMAL) */
/* ========================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--surface);
  border-bottom:1px solid var(--border-2);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  min-width:140px;
}
.brand-logo{
  height:100px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link{
  padding:10px 12px;
  border-radius:10px;
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
}
.nav-link:hover{
  background:rgba(11,79,108,.08);
  border-color:rgba(11,79,108,.20);
}
.nav-link.is-active{
  color:var(--primary);
  border-color:rgba(179,106,60,.55);
  background:rgba(179,106,60,.12);
}
.nav-cta{
  color:#ffffff;
  background:var(--primary);
  border-color:#0a142b;
}
.nav-cta:hover{ background:#0a142b; }

/* ========================================= */
/* NAVBAR (RESPONSIVO) */
/* ========================================= */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:var(--primary);
  margin:4px 0;
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav{
    position:fixed;
    left:0;
    right:0;
    top:72px;
    background:var(--surface);
    border-bottom:1px solid var(--border-2);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 16px 16px 16px;
  }
  .nav.is-open{ display:flex; }
  .nav-link{
    padding:12px 12px;
    border-radius:12px;
    border:1px solid var(--border-2);
    margin-top:10px;
    background:var(--surface);
  }
  .brand-logo{
    height:70px;
    }
  
    .nav-cta{
    color:#ffffff;
    background:var(--primary);
    border-color:#0a142b;
  }
  .nav-cta:hover{ background:#0a142b; }
}

/* ========================================= */
/* NOSOTROS */
/* ========================================= */
.about-hero{
  padding:64px 0 30px 0;
  background:linear-gradient(180deg, rgba(12,25,51,.06), rgba(242,239,231,0));
}

.about-hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.about-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(179,106,60,.12);
  border:1px solid rgba(179,106,60,.30);
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  width:fit-content;
}

.about-hero-title{
  margin:12px 0 8px 0;
  font-size:42px;
  line-height:1.08;
  letter-spacing:.2px;
  color:var(--primary);
}

.about-hero-subtitle{
  margin:0;
  color:var(--muted);
  font-weight:700;
  font-size:16px;
  max-width:780px;
}

.about-hero-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.about-hero-stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.about-stat{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:14px;
  padding:12px;
  box-shadow:var(--shadow-soft);
}

.about-stat-k{
  color:var(--muted);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
  margin-bottom:6px;
}

.about-stat-v{
  color:var(--text);
  font-weight:900;
  font-size:13px;
}

.about-hero-card{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.about-hero-card-title{
  font-weight:900;
  color:var(--primary);
  letter-spacing:.2px;
  margin-bottom:6px;
}

.about-hero-card-sub{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.about-hero-pill-grid{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.about-hero-pill{
  display:flex;
  gap:12px;
  align-items:center;
  border:1px solid var(--border-2);
  background:var(--surface);
  border-radius:14px;
  padding:12px;
}

.about-hero-pill-ico{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(12,25,51,.06);
  border:1px solid rgba(12,25,51,.12);
  color:var(--primary);
  flex:0 0 auto;
}
.about-hero-pill-ico i{ font-size:18px; }

.about-hero-pill-txt{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.about-hero-pill-title{
  font-weight:900;
  color:var(--text);
  letter-spacing:.2px;
}

.about-hero-pill-desc{
  font-weight:700;
  color:var(--muted);
  font-size:13px;
}

.about-hero-card-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.about-section{
  padding:34px 0 22px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}

.about-card{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.about-h2{
  margin:0 0 10px 0;
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:22px;
}

.about-h2-lg{
  margin:0 0 10px 0;
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:28px;
}

.about-text{
  margin:0 0 12px 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
}

.about-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.about-tag{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(11,79,108,.18);
  background:rgba(11,79,108,.06);
  color:var(--primary);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}

.about-divider{
  height:1px;
  background:rgba(207,199,179,.75);
  margin:14px 0;
}

.about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
}

.about-pillars{
  padding:18px 0 34px 0;
}

.about-pillars-head{
  margin-bottom:14px;
}

.about-sub{
  margin:0;
  color:var(--muted);
  font-weight:700;
  max-width:820px;
}

.about-pillars-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.pillar{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.pillar-ico{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(179,106,60,.10);
  border:1px solid rgba(179,106,60,.22);
  color:var(--primary);
  margin-bottom:12px;
}
.pillar-ico i{ font-size:18px; }

.pillar-title{
  margin:0 0 8px 0;
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
}

.pillar-text{
  margin:0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
}

.pillar-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
}

.about-why{
  padding:18px 0 42px 0;
}

.about-why-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:start;
}

.about-benefits{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.about-benefit{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:14px;
  box-shadow:var(--shadow-soft);
}

.about-benefit-ico{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,107,58,.10);
  border:1px solid rgba(11,107,58,.18);
  color:#0b6b3a;
  flex:0 0 auto;
}
.about-benefit-ico i{ font-size:14px; }

.about-benefit-txt{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.about-benefit-title{
  font-weight:900;
  color:var(--text);
  letter-spacing:.2px;
}

.about-benefit-desc{
  font-weight:700;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.about-why-card{
  background:var(--surface);
  border:1px solid var(--border-2);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}

.about-why-card-title{
  font-weight:900;
  color:var(--primary);
  letter-spacing:.2px;
  margin-bottom:10px;
}

.about-why-points{
  display:grid;
  gap:10px;
}

.about-why-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid var(--border-2);
  border-radius:14px;
  padding:12px;
  background:rgba(12,25,51,.03);
}

.about-why-point-ico{
  width:36px;
  height:36px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(12,25,51,.06);
  border:1px solid rgba(12,25,51,.12);
  color:var(--primary);
  flex:0 0 auto;
}
.about-why-point-ico i{ font-size:14px; }

.about-why-point-txt{
  color:var(--muted);
  font-weight:800;
  line-height:1.5;
  font-size:13px;
  padding-top:2px;
}

.about-why-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.about-cta{
  padding:26px 0 68px 0;
}

.about-cta-inner{
  background:rgba(179,106,60,.10);
  border:1px solid rgba(179,106,60,.22);
  border-radius:18px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:var(--shadow-soft);
}

.about-cta-title{
  margin:0 0 6px 0;
  color:var(--primary);
  font-weight:900;
  letter-spacing:.2px;
  font-size:24px;
}

.about-cta-text{
  margin:0;
  color:var(--muted);
  font-weight:700;
  max-width:760px;
}

.about-cta-right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.about-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid rgba(11,79,108,.22);
  background:var(--surface);
  color:var(--primary);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.about-cta-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(179,106,60,.35);
  background:rgba(179,106,60,.06);
}

.about-cta-btn.outline{
  background:transparent;
  border:1px solid rgba(179,106,60,.30);
}

@media (max-width: 980px){
  .about-hero-inner{ grid-template-columns:1fr; }
  .about-hero-title{ font-size:34px; }
  .about-hero-stats{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-pillars-grid{ grid-template-columns:1fr; }
  .about-why-inner{ grid-template-columns:1fr; }
  .about-cta-inner{ flex-direction:column; align-items:flex-start; }
  .about-cta-right{ width:100%; }
  .about-cta-btn{ width:100%; }
}

.about-why-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}

.about-why-media{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:140px 140px;
  gap:10px;
  margin-bottom:14px;
}

.about-why-photo{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border-2);
  background:var(--surface);
  box-shadow:var(--shadow-soft);
}

.about-why-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-why-photo.photo-a{
  grid-column:1 / 2;
  grid-row:1 / 3;
}

.about-why-photo.photo-b{
  grid-column:2 / 3;
  grid-row:1 / 2;
}

.about-why-photo.photo-c{
  grid-column:2 / 3;
  grid-row:2 / 3;
}

.about-why-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.about-why-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(12,25,51,.04);
  border:1px solid var(--border-2);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.about-why-chip i{
  color:var(--primary);
  font-size:14px;
}

@media (max-width: 980px){
  .about-why-inner{
    grid-template-columns:1fr;
  }

  .about-why-media{
    grid-template-columns:1fr;
    grid-template-rows:180px 150px 150px;
  }

  .about-why-photo.photo-a{
    grid-column:auto;
    grid-row:1 / 2;
  }

  .about-why-photo.photo-b{
    grid-column:auto;
    grid-row:2 / 3;
  }

  .about-why-photo.photo-c{
    grid-column:auto;
    grid-row:3 / 4;
  }
}

/* ========================================= */
/* INSTRUCTOR / AGENTE CAPACITADOR (SECCION) */
/* ========================================= */

.instructor{
  padding: 68px 0;
  background: transparent;
}

.instructor-head{
  max-width: 940px;
  margin: 0 0 22px 0;
}

.instructor-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.75);
  font-weight: 1000;
  letter-spacing: .2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.instructor-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.instructor-left{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.instructor-badges{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.instructor-badge{
  border: 1px solid var(--border-2);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.instructor-badge.stps{
  border-color: rgba(179,106,60,.45);
  background: rgba(179,106,60,.08);
}

.instructor-badge-title{
  font-weight: 1100;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: .2px;
}

.instructor-badge-code{
  font-weight: 900;
  color: var(--text);
  font-size: 14px;
}

.instructor-summary{
  border: 1px solid var(--border-2);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
}

.instructor-text{
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.instructor-columns{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.instructor-block{
  border: 1px solid var(--border-2);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
}

.instructor-block-title{
  font-weight: 1100;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.instructor-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 750;
}

.instructor-list li{
  margin: 8px 0;
}

.instructor-experience{
  margin-top: 2px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-2);
  background: rgba(12,25,51,.04);
}

.instructor-subtitle{
  margin: 0 0 10px;
  font-weight: 1100;
  font-size: 15px;
  color: var(--primary);
}

.instructor-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.instructor-right{
  display: block;
}

.instructor-card{
  border: 1px solid var(--border-2);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.instructor-photo{
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(12,25,51,.06);
}

.instructor-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-card-body{
  padding: 14px;
}

.instructor-card-title{
  font-weight: 1100;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: .2px;
}

.instructor-card-note{
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 12px;
}

.instructor-mini-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.instructor-mini{
  border: 1px solid var(--border-2);
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  padding: 10px;
}

.instructor-mini-label{
  font-weight: 1100;
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 6px;
}

.instructor-mini-value{
  font-weight: 900;
  color: var(--text);
  font-size: 13px;
}

.instructor-divider{
  height: 1px;
  background: var(--border-2);
  margin: 14px 0;
}

.instructor-pill-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.instructor-pill-list li{
  border: 1px solid var(--border-2);
  background: rgba(11,79,108,.06);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (min-width: 900px){
  .instructor-badges{
    grid-template-columns: 1fr 1fr;
  }

  .instructor-columns{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 981px){
  .instructor-inner{
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
  }

  .instructor-left{
    padding-right: 12px;
  }
}


/* ========================================= */
/* FOOTER */
/* ========================================= */
.footer{
  padding:38px 0 18px 0;
  border-top:1px solid var(--border-2);
  background:var(--surface);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr 1fr;
  gap:18px;
}
.footer-logo{
  height:125px;
  width:auto;
  object-fit:contain;
  margin-bottom:10px;
}
.footer-title{
  font-weight:900;
  color:var(--primary);
  margin-bottom:10px;
}
.footer-link{
  display:block;
  padding:6px 0;
  color:var(--text);
  font-weight:800;
}
.footer-link:hover{ color:var(--link); }
.footer-muted{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.footer-bottom{ margin-top:18px; }
.footer-line{
  height:1px;
  background:var(--border);
  margin-bottom:10px;
}
.footer-copy{
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.footer-dev{
  color:var(--link);
  font-weight:900;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

/* ========================================= */
/* RESPONSIVO GENERAL */
/* ========================================= */
@media (max-width: 900px){
  .section{ padding:52px 0; }
  .section-title{ font-size:28px; }
  .footer-grid{ grid-template-columns:1fr; }

  .footer-logo{
    height:85px;
    }
}


/* ========================================= */
/* BOTON FLOTANTE WHATSAPP */
/* ========================================= */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;

  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 14px;
  border-radius:999px;

  background:#25D366;
  color:#ffffff;

  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 14px 30px rgba(0,0,0,.22);

  font-weight:900;
  letter-spacing:.2px;

  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.whatsapp-float i{
  font-size:20px;
  line-height:0;
}
.whatsapp-float:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(0,0,0,.26);
  filter:brightness(1.02);
}
.whatsapp-float:active{
  transform:translateY(0px);
}

@media (max-width: 900px){
  .whatsapp-float{
    right:14px;
    bottom:14px;
    padding:12px 12px;
  }
  .whatsapp-float span{
    display:none;
  }
}
