﻿:root {
  --color-primary: #004b8d;
  --color-secondary: #00a0a6;
  --color-dark: #0f1c2e;
  --color-light: #f5f7fa;
  --color-neutral: #6b7a90;
  --color-footer: #021d36;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-lg: 0 40px 80px rgba(15, 28, 46, 0.2);
  --shadow-sm: 0 12px 30px rgba(15, 28, 46, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 18% 18%, rgba(0, 160, 166, 0.12), transparent 55%),
    radial-gradient(circle at 82% 0%, rgba(0, 75, 141, 0.1), transparent 48%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 60%, #f3f9ff 100%);
  color: var(--color-dark);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 166, 0.18), transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
  animation: orbFloat 18s ease-in-out infinite;
}

body::before {
  top: -10rem;
  left: -8rem;
}

body::after {
  bottom: -12rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(0, 75, 141, 0.22), transparent 70%);
  animation-duration: 22s;
}

body.secondary {
  background: radial-gradient(circle at 10% 10%, rgba(0, 160, 166, 0.12), transparent 45%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 60%, #f2fbfb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}


.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 122, 144, 0.12);
  /* configurable nav size so logos can scale proportionally */
  --topbar-height: 64px; /* overall min height for the bar (adjust as needed) */
  --topbar-vertical-padding: 1rem; /* default vertical padding inside container */
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* use the padding variable so image sizing can reference it */
  padding: var(--topbar-vertical-padding) 0;
  gap: 1.5rem;
  /* ensure a stable navigation height so logos can be sized relative to it */
  min-height: var(--topbar-height);
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-dark);
}

.brand span {
  color: var(--color-secondary);
}

/* ===== Carrusel infinito de marcas (CSS puro) ===== */
:root{
  /* Ajustes rápidos */
  --logo-h: 40px;          /* alto de los logos (reducido para mostrar más) */
  --gap: 32px;             /* espacio entre logos (reducido) */
  --speed: 16s;            /* duración del bucle (menor = más rápido) */
  --mask-edge: 8%;         /* desvanecido lateral */
  --arrow-size: 34px;      /* tamaño flechas */
  --dots-size: 8px;
  --dots-gap: 8px;
}

.brands-infinite{
  padding-block: 36px 28px;
  text-align: center;
}
.brands-infinite__title{
  font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
  font-weight: 700;
  margin: 0 0 18px;
  color: #333;
}

.brands-infinite__wrap{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  max-width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Flechas (decorativas; sin JS) */
.brands-infinite__arrow{
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: #666;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  opacity: .7;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  user-select: none;
  pointer-events: none; /* decorativas */
}
.brands-infinite__arrow:hover{
  opacity: 1;
  transform: scale(1.05);
}

.brands-infinite__viewport{
  position: relative;
  overflow: hidden;
  /* desvanecido lateral */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 var(--mask-edge), #000 calc(100% - var(--mask-edge)), transparent);
          mask-image: linear-gradient(to right, transparent, #000 var(--mask-edge), #000 calc(100% - var(--mask-edge)), transparent);
}

.brands-infinite__track{
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  padding: 10px 4px;
  will-change: transform;
  animation: brands-marquee var(--speed) linear infinite;
}
.brands-infinite__viewport:hover .brands-infinite__track{
  animation-play-state: paused; /* pausa al hover */
}

.brand-logo{
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  filter: grayscale(0) contrast(1.05);
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}
.brand-logo:hover{
  opacity: 1;
  transform: scale(1.04);
  filter: grayscale(0);
}

/* Bucle infinito (la pista mide 2x contenido => se mueve -50%) */
@keyframes brands-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Dots decorativos */
.brands-infinite__dots{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: var(--dots-gap);
  opacity: .55;
}
.brands-infinite__dots span{
  width: var(--dots-size);
  height: var(--dots-size);
  border-radius: 50%;
  background: #cfd8dc;
}
.brands-infinite__dots span:nth-child(2){ background: #b0bec5; }
.brands-infinite__dots span:nth-child(3){ background: #90a4ae; }
.brands-infinite__dots span:nth-child(4){ background: #b0bec5; }

/* Responsivo */
@media (max-width: 1024px){
  :root{ --logo-h: 40px; --gap: 36px; }
}
@media (max-width: 768px){
  :root{ --logo-h: 36px; --gap: 32px; --mask-edge: 12%; }
}
@media (max-width: 480px){
  :root{ --logo-h: 32px; --gap: 20px; --mask-edge: 16%; }
}

/* Accesibilidad: respeta movimiento reducido */
@media (prefers-reduced-motion: reduce){
  .brands-infinite__track{ animation: none; }
  .brands-infinite__viewport{
    overflow: auto hidden;
    scroll-snap-type: x mandatory;
  }
  .brand-logo{ scroll-snap-align: center; }
}



/* Responsive brand logo: show large on >=768px, small on <768px */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand__logo {
  display: inline-flex;
  align-items: center;

}

.hola{
  width: 150px;
}
.holas{
  width: 300px;
}
.hola-chiquito{
  width: 100px;
}
.brand__logo img {
  display: block;
  height: auto;
  /* make the logo fit the available inner height of the nav bar
     (nav height minus top+bottom padding). This keeps the image proportional
     to the navigation bar regardless of breakpoint. */
  max-height: calc(var(--topbar-height) - (var(--topbar-vertical-padding) * 2));
}

/* visibility per breakpoint: small by default, large visible on wider screens */
.hola { display: none; }
.hola-chiquito { display: inline-flex; }

@media (min-width: 768px) {
  .hola { display: inline-flex; }
  .hola-chiquito { display: none; }
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.main-nav a {
  color: var(--color-neutral);
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-dark);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero {
  padding: 7rem 0 5rem;

}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 160, 166, 0.1);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero__copy h1 {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.4rem);
  margin: 1rem 0;
  color: var(--color-dark);
}

.hero__copy p {
  max-width: 36ch;
  color: var(--color-neutral);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  border: 2px solid rgba(0, 75, 141, 0.2);
  color: var(--color-primary);
}

.btn--ghost:hover,
.btn--ghost:focus {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--color-primary);
}


.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--color-dark);
  font-weight: 500;
}

.hero__media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(340px, 90%);
  animation: float 6s ease-in-out infinite;
}

.hero__card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.hero__card-subtitle {
  color: var(--color-neutral);
  margin-bottom: 1.5rem;
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(107, 122, 144, 0.15);
  overflow: hidden;
}

.progress__bar {
  width: 80%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: inherit;
  animation: progress 4s ease-in-out infinite;
}

.hero__card-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 75, 141, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.hero__bubble {
  position: absolute;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--color-primary);
  animation: fadeInUp 1s ease forwards;
}

.hero__bubble--top {
  top: 10%;
  right: 6%;
  animation-delay: 0.4s;
}

.hero__bubble--bottom {
  bottom: 8%;
  left: 4%;
  animation-delay: 0.8s;
}

section {
  padding: 5rem 0;
}

.section__header {
  text-align: left;
  max-width: 540px;
}

.section__header--light {
  text-align: center;
  margin: 0 auto 2rem;
  color: #fff;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.8rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.service-card__link {
  color: var(--color-primary);
  font-weight: 600;
}

.brands {
  background: radial-gradient(circle at top left, rgba(0, 160, 166, 0.2), transparent 50%),
    linear-gradient(140deg, #002a56, #004b8d 55%, #00a0a6 100%);
  color: #fff;
}

.brands__cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 3rem;
}

.brands__cloud span {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.experience__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.experience__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  color: var(--color-neutral);
}

.experience__list strong {
  color: var(--color-dark);
}

.experience__aside {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(107, 122, 144, 0.1);
}

.experience__aside h3 {
  margin-top: 0;
}

.experience__aside ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.case__title {
  font-weight: 600;
  color: var(--color-dark);
}

.case__meta {
  color: var(--color-neutral);
  font-size: 0.9rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;

}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}


.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
  color: var(--color-neutral);
}

.contact__form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact__form label {
  font-weight: 600;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 122, 144, 0.25);
  font-family: inherit;
  font-size: 1rem;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 2px solid rgba(0, 160, 166, 0.35);
  border-color: transparent;
}


.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Footer: ajustes específicos para enlaces legales y navegación */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer__link {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}

.footer__link:hover,
.footer__link:focus {
  text-decoration: underline;
}

.footer__divider {
  color: rgba(255,255,255,0.5);
  margin: 0 0.25rem;
}

@media (max-width: 640px) {
  .footer__nav {
    justify-content: center;
    gap: 0.25rem;
  }
  .footer__legal {
    text-align: center;
    margin-top: 1rem;
  }
}

.footer__legal {
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}


@keyframes progress {
  0% {
    width: 40%;
  }
  50% {
    width: 85%;
  }
  100% {
    width: 40%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .top-bar .container {
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 6rem;
  }

  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.landing {
  padding-top: 4rem;
}

.landing__hero {
  padding: 6rem 0 4rem;

}

.landing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.landing__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
}

.landing__card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-neutral);
}

.landing__section {
  padding: 4rem 0;
}

.landing__section--accent {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}

.landing__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.landing__section--accent .btn--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.landing__section--accent .btn--light:hover,
.landing__section--accent .btn--light:focus {
  background: rgba(255, 255, 255, 0.3);
}

.timeline {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 75, 141, 0.2);
}

.timeline article {
  padding-left: 2.5rem;
  position: relative;
}

.timeline article::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 0 6px rgba(0, 75, 141, 0.12);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.catalog__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.catalog__tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 160, 166, 0.12);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .landing__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    left: 0;
  }

  .timeline article {
    padding-left: 1.75rem;
  }

  .timeline article::before {
    left: -7px;
  }
}
.landing__section--accent .section__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.landing__section--accent p {
  color: rgba(255, 255, 255, 0.85);
}

[data-animate] {
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.has-js [data-animate] {
  opacity: 0;
  transform: translateY(36px);
}

.has-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn__text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn__spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn--ghost .btn__spinner,
.btn--light .btn__spinner {
  border-color: rgba(0, 75, 141, 0.35);
  border-top-color: var(--color-primary);
}

.btn--loading .btn__spinner {
  display: inline-block;
}

.btn--loading .btn__text {
  opacity: 0.75;
}

.form__feedback {
  min-height: 1.5rem;
  font-weight: 600;
}

.form__feedback--success {
  color: var(--color-secondary);
}

.form__feedback--error {
  color: #d90429;
}

.form__feedback--info {
  color: var(--color-neutral);
}

.footer {
  background: radial-gradient(circle at top left, rgba(0, 160, 166, 0.16), transparent 55%),
    var(--color-footer);
  color: #fff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: -55% auto auto -18%;
  width: 48%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(70px);
  opacity: 0.6;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.floating-whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.35);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 30;
  animation: whatsappPulse 4s ease-in-out infinite;
  isolation: isolate;
  overflow: visible;
}

.floating-whatsapp::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.35), transparent 65%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 26px 60px rgba(18, 140, 126, 0.5);
}

.floating-whatsapp:hover::after,
.floating-whatsapp:focus-visible::after {
  opacity: 1;
  transform: scale(1.15);
  filter: blur(8px);
}

.floating-whatsapp__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-whatsapp__label {
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    gap: 0;
    padding: 0.75rem;
    border-radius: 50%;
  }

  .floating-whatsapp__label {
    display: none;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(18, 140, 126, 0.35);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(18, 140, 126, 0.45);
  }
}

