/* ═══════════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --primary: #0f3460;
  --secondary: #16213e;
  --accent: #4ecdc4;
  --accent-dark: #44a08d;
  --text: #1a1a2e;
  --text-light: #666;
  --bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 52, 96, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
}

.navbar.scrolled .nav-logo-img {
  height: 42px;
  padding: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--text) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.08);
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo-wrap {
  margin: 0 auto 25px;
  animation: float 3s ease-in-out infinite;
}

.hero-logo-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(78, 205, 196, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--accent);
  margin-bottom: 40px;
  font-weight: 500;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-cta {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary, .btn-cta {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 20px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  position: relative;
}

.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  background: var(--accent);
  padding: 40px 20px;
}

.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 5px;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════
   SECTIONS UTILITIES
   ═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-tag.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-image picture,
.about-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.exp-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.tag {
  background: #e8f8f5;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   FEATURED SERVICE - CIRUGÍA DE LA MANO
   ═══════════════════════════════════════════ */
.featured-service {
  background: linear-gradient(135deg, #e8f8f5 0%, #f0fdfa 100%);
  padding: 100px 20px;
}

.featured-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.featured-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.featured-lead {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 16px;
}

.featured-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.featured-list li {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}

.featured-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.featured-icon {
  font-size: 44px;
  margin-bottom: 15px;
}

.featured-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.featured-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  background: var(--bg);
  padding: 100px 20px;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary);
  margin: 15px 0;
}

.services-header p {
  color: var(--text-light);
  font-size: 17px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════ */
.pillars {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 60px;
}

.pillars-header h2 {
  font-size: clamp(26px, 4vw, 32px);
  color: var(--primary);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pillar-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.pillar-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.pillar-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */
.faq-section {
  background: var(--white);
  padding: 100px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary);
  margin: 15px 0;
}

.faq-header p {
  color: var(--text-light);
  font-size: 17px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item[open] {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-dark);
  font-weight: 400;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: rgba(78, 205, 196, 0.05);
}

.faq-answer {
  padding: 0 28px 28px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-intro {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.contact-item a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

.contact-services {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-services h3 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 20px;
}

.contact-services ul {
  list-style: none;
}

.contact-services li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-light);
  font-size: 15px;
}

.contact-services li:last-child {
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--white);
  padding: 5px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bio {
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px !important;
  font-style: italic;
  margin-bottom: 20px !important;
}

.footer-social {
  margin-bottom: 25px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.social-link.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-logo-img {
    height: 40px;
    padding: 3px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    gap: 20px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-logo-img {
    height: 100px;
  }

  .about-container,
  .contact-container,
  .featured-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    aspect-ratio: 4/3;
    object-position: center;
  }

  .featured-list {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    right: 10px;
    bottom: -10px;
    padding: 15px 20px;
  }

  .exp-number {
    font-size: 28px;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .service-card.featured {
    transform: scale(1);
  }

  .service-card.featured:hover {
    transform: scale(1) translateY(-8px);
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 15px 50px;
  }

  .hero-logo-img {
    height: 80px;
  }

  .btn-primary, .btn-secondary, .btn-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-card, .pillar-card, .featured-card {
    padding: 25px 20px;
  }

  .contact-services {
    padding: 25px 20px;
  }

  .footer-logo-img {
    height: 45px;
  }

  .featured-content h2 {
    font-size: 26px;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}