@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix para iOS: Evita estilos y colores por defecto del sistema en botones e inputs */
input:not([type="checkbox"]):not([type="radio"]), button, textarea {
  -webkit-appearance: none;
  appearance: none;
}

:root {
  --color-primary-dark: #1a1a1a;
  --color-black: #000000;
  --color-gray: #5c5c5c;
  --color-gold-start: #b6943f;
  --color-gold-end: #d5b960;
  --color-whatsapp: #0d9e45;
  --color-whatsapp-hover: #02702c;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* Evita que el contenido se oculte detrás de la barra de navegación fija */
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6, .navbar-menu a, .btn {
  font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
  background-color: #000000;
  background-image: linear-gradient(to right, #000000, #5c5c5c);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
}

.navbar-logo {
  position: absolute;
  left: 1rem;
}

.navbar-logo img {
  height: 64px;
  width: auto;
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s;
  position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.1);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  transform: scaleX(1);
}

/* Navbar Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 1rem;
}

.navbar-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s;
}

.navbar-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Slider Controls */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
  background-color: white;
  transform: scale(1.3);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  gap: 0.5rem;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--color-gold-start);
  background-image: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  color: var(--color-primary-dark);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Botón Más Detalles Personalizado */
.btn-details {
  width: 100%;
  border: 1px solid var(--color-gold-start);
  color: var(--color-gold-start);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-details:hover {
  background: var(--color-gold-start);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(182, 148, 63, 0.3);
}

.btn-details:active, .btn-details.clicked {
  transform: scale(0.95);
  background: var(--color-gold-end);
  box-shadow: none;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-gray {
  background: var(--color-gray-100);
}

.section-dark {
  background: var(--color-primary-dark);
  color: white;
}

.section-white {
  background: white;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .hero {
    height: 450px; /* Altura ajustada para móviles */
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    text-align: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu a {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  /* Inputs con borde más visible en móviles */
  .form-input, .search-input, select, textarea {
    border-color: var(--color-gray-600);
  }
}

/* Property Card */
.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.property-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.property-card.is-unavailable {
  filter: grayscale(80%);
  opacity: 0.7;
}

.property-card.is-unavailable:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.property-card.is-unavailable .btn {
  background: var(--color-gray-300) !important;
  border-color: var(--color-gray-300) !important;
  color: var(--color-gray-600) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.property-unavailable-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.property-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-gold-start);
  background-image: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  color: var(--color-primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.property-badge-featured {
  left: 1rem;
  right: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-content {
  padding: 1.5rem;
}

.property-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.property-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.property-price-amount {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.property-features {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-gray-200);
  margin-top: 0.75rem;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.property-description {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin: 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-owner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-gray-200);
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.property-date {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-0.5rem);
  background: var(--color-gray-50);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-gold-start);
  background-image: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(6deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.feature-card:hover h3 {
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: var(--color-gray-600);
}

/* Process Cards (Dark Background) */
.process-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.process-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-0.5rem);
  background: rgba(255, 255, 255, 0.05);
}

.process-number {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.process-card:hover h3 {
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-card p {
  color: #d1d5db;
}

/* Footer */
.footer {
  background-color: var(--color-primary-dark);
  background-image: linear-gradient(to bottom, var(--color-primary-dark), var(--color-black));
  color: white;
  padding: 3rem 0;
  border-top: 1px solid var(--color-gray-800);
  margin-top: auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h3 {
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-contact {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo-container {
  flex: 0 0 auto;
}

.footer-video {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Asegura una sola columna para que Instagram quede bajo el teléfono */
    gap: 2rem;
    text-align: center;
  }
  .footer-col {
    min-width: 0; /* Permite que el contenido se ajuste sin romper la grilla */
  }
  .footer-logo-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    order: -1;
    margin-bottom: 1rem;
  }
  .footer-video {
    width: 150px;
    height: 150px;
  }
  .footer-col ul {
    margin-top: 0 !important;
  }
  .footer-contact {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    padding: 0 1rem; /* Margen extra para que no pegue en los bordes */
  }
  .footer a, .footer span {
    overflow-wrap: break-word;
    word-wrap: break-word; /* Asegura que textos largos bajen de línea */
  }
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-800);
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-gray-600);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--color-gray-100);
}

.modal-body {
  padding: 2rem;
}

/* Image Carousel */
.carousel {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease; /* Suaviza el cambio de imágenes */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: white;
}

.carousel-btn-prev {
  left: 0.5rem;
}

.carousel-btn-next {
  right: 0.5rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.carousel-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Search */
.search-container {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  font-size: 1rem;
}

.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-600);
}

/* Auth */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-dark);
  background-image: linear-gradient(135deg, var(--color-primary-dark), var(--color-gray));
  padding: 2rem;
}

.login-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.login-logo img {
  height: 80px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold-start);
}

/* Admin */
.admin-header {
  background-color: var(--color-black);
  background-image: linear-gradient(to right, var(--color-black), var(--color-gray));
  color: white;
  padding: 2rem 0;
}

.admin-header h1 {
  font-size: 2rem;
}

.admin-content {
  padding: 2rem 0;
}

.admin-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.image-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
}

.image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-gray-600);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--color-gray-300);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #0d9e45;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  background-color: #02702c;
  animation-play-state: paused;
}
.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 158, 69, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(13, 158, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 158, 69, 0);
  }
}
