﻿:root {
  --green: #007a68;
  --green-dark: #005347;
  --mint: #dff4ef;
  --blue: #236a9f;
  --ink: #12201e;
  --muted: #64716f;
  --line: #dbe7e4;
  --page: #f5f8f7;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Overpass", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav,
.hero,
.section,
.quick-access,
.contact-section,
.footer,
.page-hero,
.list-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: clamp(142px, 16vw, 210px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2d403d;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links .active {
  color: var(--green);
}

.nav-cta {
  padding: 11px 16px !important;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
  padding: 70px 0 46px;
}

.home-hero {
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 42px 0 46px;
}

.hero-copy h1,
.section h2,
.page-hero h1,
.contact-section h2 {
  margin: 0;
  font-family: "Overpass", Arial, sans-serif;
  line-height: 1;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.hero-copy p:not(.eyebrow),
.section p,
.contact-section p,
.page-hero p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-hero .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 34px rgba(0, 122, 104, 0.22);
}

.button.soft {
  color: var(--green-dark);
  background: var(--mint);
}

.hero-media {
  margin: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 30px 70px rgba(18, 32, 30, 0.18);
}

.hero-slider img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slider img.active {
  opacity: 1;
}

.institutional-section {
  display: grid;
  gap: 24px;
}

.institutional-slider {
  width: min(900px, 100%);
  height: 650px;
  min-height: 0;
  margin: 0 auto;
  aspect-ratio: 16 / 6;
}

.mission-vision {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 48px rgba(18, 32, 30, 0.08);
}

.mission-vision article {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
  color: var(--white);
}

.mission-vision strong {
  color: var(--white);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.mission-vision span {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  font-weight: 700;
}

.mission-block {
  background: #6c6c6c;
}

.vision-block {
  background: #0f3757;
}

.hero-media img {
  height: min(620px, 70vh);
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(18, 32, 30, 0.18);
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 48px rgba(18, 32, 30, 0.08);
}

.quick-access a {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--white);
  background: var(--white);
}

.quick-access strong,
.card h3,
.news-grid h3,
.gallery-card h3 {
  font-family: "Overpass", Arial, sans-serif;
  font-size: 1.45rem;
}

.quick-access span {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-access .quick-specialties {
  background: #6c6c6c;
}

.quick-access .quick-studies {
  background: #0f3757;
}

.quick-access .quick-internment {
  background: #22b1c5;
}

.quick-access strong {
  color: var(--white);
  text-transform: uppercase;
}

.section,
.contact-section {
  padding: 76px 0;
}

.section.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.section h2,
.contact-section h2,
.page-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.image-grid img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 8px;
}

.image-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: var(--mint);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards,
.news-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.news-grid article,
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 32, 30, 0.08);
}

.card img,
.news-grid img,
.gallery-card img {
  height: 220px;
  object-fit: cover;
}

.icon-cards .card img {
  height: 150px;
  object-fit: contain;
  padding: 24px;
  background: #f7fbfa;
}

.card h3,
.card p,
.card a,
.news-grid h3,
.news-grid p,
.gallery-card h3,
.gallery-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.card h3,
.news-grid h3,
.gallery-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 800;
}

.compact {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.specialty-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("assets/especialidades/especialidades.png") center / cover;
  box-shadow: 0 18px 42px rgba(18, 32, 30, 0.08);
}

.specialty-card header {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.specialty-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: #f7fbfa;
}

.specialty-card h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.specialty-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.specialty-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.study-card,
.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 32, 30, 0.08);
}

.study-card img,
.news-card img {
  height: 260px;
  object-fit: cover;
}

.study-card div,
.news-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.study-card h2,
.news-card h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.5rem;
  line-height: 1.15;
}

.study-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.news-card button {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.news-card.image-only div {
  padding: 0;
}

.news-card.image-only img {
  height: 360px;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 32, 30, 0.58);
}

.news-modal.open {
  display: flex;
}

.news-modal-content {
  position: relative;
  width: min(840px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(18, 32, 30, 0.3);
}

.news-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.news-modal-panel {
  display: none;
}

.news-modal-panel.active {
  display: block;
}

.news-modal-panel h2 {
  margin: 0 42px 18px 0;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.news-modal-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.section-button {
  margin-top: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 32, 30, 0.08);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 20px;
  color: var(--green);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 52px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 170px;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 58px 0 44px;
}

.page-hero.text-only {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.page-hero img {
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(18, 32, 30, 0.14);
}

.list-section {
  padding: 42px 0 78px;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 54px rgba(18, 32, 30, 0.16);
  }

  .nav-links.open { display: flex; }

  .hero,
  .section.split,
  .contact-section,
  .page-hero,
  .cards,
  .specialties-grid,
  .study-grid,
  .news-grid,
  .gallery-grid,
  .quick-access,
  .compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .home-hero {
    padding-top: 28px;
  }

  .hero-slider {
    min-height: 260px;
    aspect-ratio: 1.2 / 0.78;
  }

  .news-modal {
    padding: 14px;
  }

  .news-modal-content {
    padding: 24px;
  }

  .institutional-slider {
    width: 100%;
    height: 420px;
    min-height: 0;
  }

  .mission-vision {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-hero img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.2 / 0.78;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-copy h1,
  .section h2,
  .page-hero h1,
  .contact-section h2 {
    font-size: 2.7rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }
}

.portal-notice-toggle {
  min-height: 40px;
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.portal-qr-link {
  width: 112px;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 7px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 24px rgba(18, 32, 30, 0.08);
}

.portal-qr-link img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.portal-qr-link span {
  color: var(--green-dark);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.portal-notice {
  position: absolute;
  top: calc(100% + 12px);
  right: max(16px, calc((100vw - 1160px) / 2));
  width: min(420px, calc(100vw - 32px));
  display: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(18, 32, 30, 0.2);
}

.portal-notice.open {
  display: block;
}

.portal-notice strong {
  display: block;
  padding-right: 28px;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.portal-notice p {
  margin: 12px 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.portal-notice a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.portal-notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

@media (max-width: 900px) {
  .portal-qr-link {
    width: 100%;
    grid-template-columns: 58px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .portal-notice {
    position: fixed;
    top: 98px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}


.contact-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-alert {
  margin: 0 0 10px;
  padding: 18px 20px;
  border-left: 5px solid #c43434;
  border-radius: 8px;
  color: #7e1f1f !important;
  background: #fff1f1;
  font-size: 1.12rem !important;
  font-weight: 800;
  line-height: 1.45 !important;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form button {
  text-transform: uppercase;
}

.contact-directory {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.contact-directory h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-family: "Overpass", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.phone-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(18, 32, 30, 0.08);
}

.phone-card.featured {
  border-color: rgba(0, 122, 104, 0.32);
  background: var(--mint);
}

.phone-card h4 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.phone-card p {
  margin: 7px 0;
  color: var(--ink);
  line-height: 1.45;
}

.phone-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 14px 0 0 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-section,
  .contact-directory {
    grid-template-columns: 1fr;
  }
}


.footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr) minmax(260px, 1fr);
  align-items: start;
  gap: 34px;
  padding: 48px max(16px, calc((100vw - 1160px) / 2));
  color: #e8f3f1;
  border-top: 0;
  background: #0f3757;
}

.footer img {
  width: 190px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.footer p {
  margin: 8px 0;
  color: #e8f3f1;
  line-height: 1.55;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
  }
}

.whatsapp-btn{

    background:#25D366;
    border:none;
    color:#fff;
    transition:.30s;
    cursor:pointer;

}

.whatsapp-btn:hover{

    background:#1ebe5d;
    transform:translateY(-2px);

}

.whatsapp-btn:disabled{

    opacity:.7;
    cursor:not-allowed;

}

.form-note{

    display:block;
    margin-top:15px;
    font-weight:600;
    min-height:22px;

}

input:invalid,
textarea:invalid{

    box-shadow:none;

}

input:focus,
textarea:focus{

    border-color:#25D366;

}
/* ======================================================
   FORMULARIO WHATSAPP
====================================================== */

.contact-form{
    transition:all .30s ease;
}

.contact-form:focus-within{
    transform:translateY(-2px);
}

.whatsapp-btn{

    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:100%;
    min-height:56px;

    padding:16px 24px;

    background:linear-gradient(135deg,#25D366,#128C7E);

    color:#fff;

    border:none;
    border-radius:999px;

    cursor:pointer;

    transition:all .30s ease;

}

.whatsapp-btn:hover{

    background:linear-gradient(135deg,#1EBE5D,#0E7A6E);

    transform:translateY(-2px);

    box-shadow:0 12px 28px rgba(37,211,102,.30);

}

.whatsapp-btn:active{

    transform:scale(.98);

}

.whatsapp-btn:disabled{

    opacity:.75;

    cursor:not-allowed;

}

.whatsapp-icon{

    width:22px;
    height:22px;

    min-width:22px;
    min-height:22px;

    display:block;

    object-fit:contain;

    flex-shrink:0;

}

.btn-text{

    font-weight:700;

    letter-spacing:.3px;

}

.spinner{

    width:18px;
    height:18px;

    border:3px solid rgba(255,255,255,.35);
    border-top:3px solid #fff;

    border-radius:50%;

    display:none;

    animation:spin .8s linear infinite;

}

.whatsapp-btn.loading .spinner{

    display:block;

}

.whatsapp-btn.loading .whatsapp-icon{

    display:none;

}

.whatsapp-btn.loading .btn-text{

    animation:pulse 1s infinite;

}

.whatsapp-btn::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform:translateX(-120%);

}

.whatsapp-btn:hover::after{

    animation:shine .8s;

}

@keyframes shine{

    to{

        transform:translateX(120%);

    }

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes pulse{

    0%{

        opacity:1;

    }

    50%{

        opacity:.65;

    }

    100%{

        opacity:1;

    }

}

.form-note{

    display:block;

    min-height:24px;

    margin-top:14px;

    text-align:center;

    font-weight:700;

    color:#25D366;

}

.whatsapp-help{

    margin:0;

    text-align:center;

    color:#64716f;

    font-size:.88rem;

    line-height:1.6;

}

input:focus,
textarea:focus{

    border-color:#25D366;

    box-shadow:0 0 0 4px rgba(37,211,102,.18);

    outline:none;

}

.contact-form label{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.contact-form input,
.contact-form textarea{

    transition:all .25s ease;

}

.contact-form textarea{

    min-height:140px;

}

@media (max-width:768px){

    .whatsapp-btn{

        min-height:60px;

        font-size:1rem;

        padding:16px;

    }

    .btn-text{

        font-size:.95rem;

    }

    .whatsapp-help{

        font-size:.82rem;

    }

}
/* ==========================================
   BOTÓN FLOTANTE WHATSAPP
========================================== */

.floating-whatsapp{

    position:fixed;

    right:24px;
    bottom:24px;

    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    border-radius:999px;

    background:#25D366;

    color:#fff;

    font-weight:700;

    box-shadow:0 12px 28px rgba(0,0,0,.20);

    transition:all .30s ease;

    animation:whatsappPulse 5s infinite;

}

.floating-whatsapp:hover{

    transform:translateY(-4px) scale(1.05);

    background:#1EBE5D;

}

.floating-whatsapp img{

    width:24px;
    height:24px;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    5%{

        transform:scale(1.08);

    }

    10%{

        transform:scale(1);

    }

    100%{

        transform:scale(1);

    }

}

@media(max-width:768px){

    .floating-whatsapp{

        right:16px;
        bottom:20px;

        padding:14px;

    }

    .floating-whatsapp span{

        display:none;

    }

}