/* =====================================================
   Dr. Emmanuel Alquicira Marcué — Landing Page
   Tokens: azul #114ca5 · teal #49c7bb · blanco
   Tipografía: Manrope (títulos) + Inter (cuerpo)
   ===================================================== */

:root{
  --ea-blue: #114ca5;
  --ea-blue-dark: #0c3778;
  --ea-teal: #49c7bb;
  --ea-teal-tint: #eaf9f7;
  --ea-mist: #f4f8fb;
  --ea-white: #ffffff;
  --ea-ink: #10233f;
  --ea-ink-soft: #4c5c72;
  --ea-line: #e2e9f2;

  --ea-font-display: 'Manrope', system-ui, sans-serif;
  --ea-font-body: 'Inter', system-ui, sans-serif;

  --ea-radius: 22px;
  --ea-shadow: 0 30px 60px -30px rgba(17, 76, 165, 0.35);
}

html, body{
  overflow-x: hidden;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: var(--ea-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ea-ink);
  background: var(--ea-white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4{
  font-family: var(--ea-font-display);
  color: var(--ea-blue-dark);
  margin: 0;
  line-height: 1.18;
}

p{
  margin: 0;
}

.ea-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ea-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ea-blue);
  margin-bottom: 1.1rem;
}

.ea-eyebrow i{
  color: var(--ea-teal);
  font-size: 0.95rem;
}

.ea-eyebrow-light{
  color: var(--ea-teal-tint);
}
.ea-eyebrow-light i{
  color: var(--ea-teal);
}

.ea-h2{
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.ea-section-sub{
  font-size: 1.05rem;
  color: var(--ea-ink-soft);
  max-width: 46ch;
}

/* ---------- Botones ---------- */
.ea-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ea-font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.ea-btn i{
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}
.ea-btn:hover{
  transform: translateY(-2px);
}
.ea-btn:hover i{
  transform: translateX(3px);
}

.ea-btn-primary{
  background: var(--ea-blue);
  color: var(--ea-white);
  box-shadow: 0 16px 30px -14px rgba(17, 76, 165, 0.6);
}
.ea-btn-primary:hover{
  background: var(--ea-blue-dark);
  color: var(--ea-white);
}

.ea-btn-ghost{
  background: transparent;
  border-color: var(--ea-line);
  color: var(--ea-blue-dark);
}
.ea-btn-ghost:hover{
  border-color: var(--ea-blue);
  color: var(--ea-blue);
}

.ea-btn-light{
  background: var(--ea-white);
  color: var(--ea-blue-dark);
}
.ea-btn-light:hover{
  background: var(--ea-teal-tint);
  color: var(--ea-blue-dark);
}

.ea-btn-outline-light{
  border-color: rgba(255,255,255,0.55);
  color: var(--ea-white);
}
.ea-btn-outline-light:hover{
  border-color: var(--ea-white);
  color: var(--ea-white);
}

.ea-btn-sm{
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Nav ---------- */
.ea-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.3rem 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.ea-nav.ea-nav-scrolled{
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -20px rgba(12, 55, 120, 0.4);
}

.ea-nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ea-brand{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ea-brand-mark{
  width: 150px;

}
.ea-brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.ea-brand-text strong{
  font-family: var(--ea-font-display);
  font-weight: 700;
  color: var(--ea-blue-dark);
  font-size: 1rem;
}
.ea-brand-text em{
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ea-ink-soft);
}

.ea-nav-links{
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ea-nav-links a{
  font-family: var(--ea-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ea-ink);
  position: relative;
  padding: 0.3rem 0;
}
.ea-nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--ea-teal);
  transition: width 0.25s ease;
}
.ea-nav-links a:hover::after{
  width: 100%;
}

.ea-nav-cta{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ea-nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ea-line);
  border-radius: 10px;
  background: var(--ea-white);
  cursor: pointer;
}
.ea-nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ea-blue-dark);
}

/* ---------- Hero ---------- */
.ea-hero{
  position: relative;
 
  background:linear-gradient(180deg, #d1efeb 0%, #f7fbff 70%);
  overflow: hidden;
}

.ea-hero-rings{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ea-ring{
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 76, 165, 0.18);
}
.ea-ring-1{
  width: 620px;
  height: 620px;
  right: -180px;
  top: -160px;
  animation: eaBreathe 9s ease-in-out infinite;
}
.ea-ring-2{
  width: 420px;
  height: 420px;
  right: -60px;
  top: 40px;
  border-color: rgba(73, 199, 187, 0.28);
  animation: eaBreathe 9s ease-in-out infinite 1.2s;
}
.ea-ring-3{
  width: 240px;
  height: 240px;
  right: 120px;
  top: 160px;
  border-color: rgba(17, 76, 165, 0.22);
  animation: eaBreathe 9s ease-in-out infinite 2.4s;
}

@keyframes eaBreathe{
  0%, 100%{ transform: scale(1); opacity: 0.7; }
  50%{ transform: scale(1.06); opacity: 1; }
}

.ea-hero-row{
  position: relative;
  z-index: 1;
  gap: 2.5rem 0;
}

.ea-hero-copy{
   padding: 9.5rem 0 6rem;

}

@media(max-width: 992px){
  .ea-hero-copy{
   padding: 3.5rem 1rem 0rem;
   
}

}


.ea-hero-title{
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.ea-hero-sub{
  font-size: 1.12rem;
  color: var(--ea-ink-soft);
  max-width: 44ch;
  margin-bottom: 2.2rem;
}

.ea-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ea-hero-visual{
  position: relative;
}
.ea-hero-frame{
  position: relative;
 
}
.ea-hero-frame img{
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 11;
  object-fit: cover;
}

.ea-hero-tag{
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  right: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-family: var(--ea-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ea-blue-dark);
  box-shadow: 0 14px 30px -18px rgba(12, 55, 120, 0.5);
}
.ea-hero-tag i{
  color: var(--ea-teal);
  font-size: 1.15rem;
}

.ea-scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(17, 76, 165, 0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.ea-scroll-cue span{
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--ea-teal);
  animation: eaScroll 1.8s ease-in-out infinite;
}
@keyframes eaScroll{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(12px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}

/* ---------- About ---------- */
.ea-about{
  padding: 7rem 0;
}

.ea-about-frame{
  border-radius: var(--ea-radius);
  overflow: hidden;
}
.ea-about-frame img{
  width: 100%;
  height: auto;
  
}

.ea-about-copy{
  margin-top: 3rem;
}
@media (min-width: 992px){
  .ea-about-copy{ margin-top: 0; }
}

.ea-about-text{
  color: var(--ea-ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.ea-about-quote{
  font-family: var(--ea-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ea-blue-dark);
  border-left: 3px solid var(--ea-teal);
  padding-left: 1.3rem;
  margin: 1.8rem 0;
}

/* ---------- Servicios / carrusel ---------- */
.ea-services{
  padding: 7rem 0 6rem;
  background: var(--ea-mist);
}

.ea-services-carousel{
  margin-top: 3.5rem;
}

.eaServicesSwiper{
  padding: 0.5rem 0 0.5rem 1.5rem;
}
@media (min-width: 992px){
  .eaServicesSwiper{
    padding-left: calc((100vw - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px){
  .eaServicesSwiper{
    padding-left: calc((100vw - 1140px) / 2 + 0.75rem);
  }
}

.eaServicesSwiper .swiper-slide{
  width: 260px;
}

.ea-service-slide{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 700 / 850;
  box-shadow: 0 20px 40px -24px rgba(12, 55, 120, 0.45);
}
.ea-service-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ea-service-slide:hover img{
  transform: scale(1.06);
}

.ea-service-slide-label{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(12,55,120,0) 0%, rgba(12,55,120,0.88) 85%);
}
.ea-service-slide-label span{
  display: block;
  font-family: var(--ea-font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ea-teal);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.ea-service-slide-label h3{
  color: var(--ea-white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.ea-services-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ea-swiper-nav{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--ea-line);
  background: var(--ea-white);
  color: var(--ea-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ea-swiper-nav:hover{
  background: var(--ea-blue);
  border-color: var(--ea-blue);
  color: var(--ea-white);
}

.eaServicesPagination{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: static !important;
  width: auto !important;
}
.eaServicesPagination .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: var(--ea-line);
  opacity: 1;
  margin: 0 !important;
}
.eaServicesPagination .swiper-pagination-bullet-active{
  background: var(--ea-teal);
  width: 22px;
  border-radius: 4px;
  transition: width 0.25s ease;
}

/* ---------- Especialidades (franja con fondo) ---------- */
.ea-specialties{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.ea-specialties-bg{
  position: absolute;
  inset: 0;
}
.ea-specialties-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ea-specialties-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 30, 66, 1) 0%, rgba(9, 30, 66, 0.80) 30%, rgba(12, 55, 120, 0) 70%);
}


@media(max-width: 992px){
  .ea-specialties-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 30, 66, .80) 0%, rgba(9, 30, 66, 0.60) 50%, rgba(12, 55, 120, .4) 100%);
}

}

.ea-specialties-inner{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
  min-height: 640px;
}

.ea-specialties-head{
  margin-bottom: auto;
  padding-top: 1rem;
}

.ea-specialties-row{
  row-gap: 2.5rem;
}

.ea-specialty-col{
  color: var(--ea-white);
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 1.4rem;
}

.ea-specialty-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(73, 199, 187, 0.2);
  color: var(--ea-teal);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.ea-specialty-col h3{
  color: var(--ea-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.ea-specialty-col p{
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  max-width: 26ch;
}

/* ---------- ¿Por qué elegirnos? ---------- */
.ea-why{
 
}

.lugar img{
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media(max-width: 1400px){
  .lugar img{
  aspect-ratio: 9/16;
  object-fit: cover;
  display: inline;
}
}

@media(min-width: 993px){
  .lugar img{
  display: inline;
}
}

@media(max-width: 992px){
  .lugar img{
  display: none;
}
}

.why-content{
padding-top: 50px ;
padding-bottom: 50px;
}

.ea-why-list{
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.ea-why-list li{
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--ea-line);
}
.ea-why-list li:first-child{
  padding-top: 0;
}

.ea-why-icon{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ea-teal-tint);
  color: var(--ea-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ea-why-list h3{
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.ea-why-list p{
  color: var(--ea-ink-soft);
  font-size: 0.98rem;
}

/* ---------- CTA ---------- */
.ea-cta{
  position: relative;
  padding: 6rem 0;
  background:url(images/cta.jpg);
  background-position: 50% 50%;
  background-size: cover;
    overflow: hidden;
}

.ea-cta-rings{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ea-cta-rings .ea-ring-2{
  right: auto;
  left: -140px;
  top: -120px;
  border-color: rgba(255,255,255,0.16);
}
.ea-cta-rings .ea-ring-3{
  right: -80px;
  top: auto;
  bottom: -100px;
  border-color: rgba(73, 199, 187, 0.35);
}

.ea-cta-title{
  color: var(--ea-white);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.ea-cta-sub{
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 0 auto 2.2rem;
  max-width: 52ch;
}

.ea-cta-actions{
  justify-content: center;
}

/* ---------- Contacto ---------- */
.ea-contact{
  padding: 7rem 0;
  background: var(--ea-mist);
}

.ea-form{
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.ea-form-row{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ea-form-row label{
  font-family: var(--ea-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ea-blue-dark);
}

.ea-form-row input,
.ea-form-row textarea{
  font-family: var(--ea-font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid var(--ea-line);
  background: var(--ea-white);
  color: var(--ea-ink);
  resize: vertical;
  transition: border-color 0.25s ease;
}
.ea-form-row input:focus,
.ea-form-row textarea:focus{
  outline: none;
  border-color: var(--ea-teal);
}

.ea-form-submit{
  align-self: flex-start;
  margin-top: 0.4rem;
  border: none;
  cursor: pointer;
}

.ea-contact-info{
  margin-top: 3rem;
  background: var(--ea-white);
  border-radius: var(--ea-radius);
  padding: 2.6rem;
  box-shadow: 0 24px 50px -30px rgba(12, 55, 120, 0.3);
}
@media (min-width: 992px){
  .ea-contact-info{ margin-top: 5.4rem; }
}

.ea-contact-info h3{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ea-contact-info > p{
  color: var(--ea-ink-soft);
  margin-bottom: 1.8rem;
}

.ea-contact-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ea-contact-list li{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.98rem;
}
.ea-contact-list i{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ea-teal-tint);
  color: var(--ea-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ea-contact-list a:hover{
  color: var(--ea-blue);
}

/* ---------- Footer ---------- */
.ea-footer{
  background: var(--ea-blue-dark);
  color: rgba(255,255,255,0.85);
  padding: 4.5rem 0 2rem;
}

.ea-footer-row{
  row-gap: 2.5rem;
}

.ea-footer-brand{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ea-footer-brand img{
  width: 152px;

  border-radius: 50%;
}
.ea-footer-brand strong{
  display: block;
  font-family: var(--ea-font-display);
  color: var(--ea-white);
  font-size: 1.02rem;
}
.ea-footer-brand span{
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.ea-footer-links,
.ea-footer-contact{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ea-footer-links h4,
.ea-footer-contact h4{
  font-family: var(--ea-font-display);
  color: var(--ea-white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ea-footer-links a,
.ea-footer-contact a{
  font-size: 0.96rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s ease;
}
.ea-footer-links a:hover,
.ea-footer-contact a:hover{
  color: var(--ea-teal);
}
.ea-footer-contact a{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ea-footer-bottom{
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.ea-footer-bottom a{
  color: var(--ea-teal);
  font-weight: 600;
}
.ea-footer-bottom a:hover{
  text-decoration: underline;
}

/* ---------- Responsive nav ---------- */
@media (max-width: 991.98px){
  .ea-nav-links{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ea-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 3rem;
    box-shadow: -20px 0 50px -30px rgba(12,55,120,0.4);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .ea-nav-links.is-open{
    transform: translateX(0);
  }
  .ea-nav-toggle{
    display: flex;
  }
}

@media (max-width: 767.98px){
  .ea-hero{ padding: 8rem 0 4.5rem; }
  .ea-about, .ea-services, .ea-why, .ea-contact{ padding: 4.5rem 0; }
  .ea-cta{ padding: 4.5rem 0;  }
  .ea-specialty-col{ border-top: none; padding-top: 0; }
  .ea-specialties-row{ row-gap: 1.8rem; }
}


.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color:#49c7bb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .floating-call-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  .floating-call-btn i {
    color: #ffffff;
    font-size: 26px;
  }

  .floating-call-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color:#49c7bb;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulse-ring {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  @media (max-width: 480px) {
    .floating-call-btn {
      width: 52px;
      height: 52px;
      bottom: 16px;
      right: 16px;
    }

    .floating-call-btn i {
      font-size: 22px;
    }
  }
  