/* ==========================================
   VARIABLES Y CONFIGURACIÓN GENERAL
   ========================================== */
/* Nuevos colores profesionales y elegantes */
:root {
  --primary-color: #1a2332;
  --secondary-color: #2c3e50;
  --accent-color: #3498db;
  --accent-gold: #d4af37;
  --highlight-color: #e8f4f8;
  --light-bg: #f8f9fa;
  --text-dark: #1a2332;
  --text-light: #ffffff;
  --gray-dark: #2d3436;
  --gray-medium: #636e72;
  --gray-light: #dfe6e9;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 15px rgba(26, 35, 50, 0.08);
  --shadow-md: 0 5px 25px rgba(26, 35, 50, 0.12);
  --shadow-lg: 0 15px 45px rgba(26, 35, 50, 0.18);
  --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  --gradient-accent: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  padding: 1rem 0;
  /* Gradiente profesional en navbar */
  background: var(--gradient-primary);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--gray-light) !important;
  transform: translateY(-2px);
}

.navbar-brand i {
  margin-right: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  min-height: 100vh;
  background: url("/images/hero.jpeg") no-repeat center center;
  background-size: cover;
  /* Removido background-attachment: fixed para evitar problemas de scroll */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Agregado padding-top para el navbar fijo */
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay con gradiente profesional */
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  /* Botón con gradiente accent y efectos */
  background: var(--gradient-accent);
  border: 2px solid transparent;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: var(--text-light);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Animaciones Hero */
.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s both;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 1s ease-in 0.9s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   SECCIONES GENERALES
   ========================================== */
section {
  /* Padding ajustado para evitar superposición con navbar fijo */
  padding: 80px 0;
  /* Asegurar que las secciones estén en el flujo normal del documento */
  position: relative;
  z-index: 1;
}

/* Primera sección (historia) necesita más espacio para navbar */
#historia {
  padding-top: 100px;
  /* Asegurar que no haya posicionamiento que cause overlap */
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.lead {
  font-size: 1.2rem;
  color: var(--gray-dark);
}

/* ==========================================
   HISTORIA SECTION
   ========================================== */
.image-placeholder img {
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.image-placeholder img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   SERVICIOS SECTION - NUEVO DISEÑO ACCORDION
   ========================================== */
/* Nuevo diseño de accordion para servicios en lugar de listas horizontales */
.service-accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1.5rem;
}

.service-accordion-item .accordion-button {
  background: var(--gradient-primary);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-accordion-item .accordion-button::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.service-accordion-item .accordion-button:not(.collapsed) {
  background: var(--gradient-accent);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.service-accordion-item .accordion-button:focus {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: brightness(0) invert(1);
}

.accordion-icon {
  font-size: 2rem;
  margin-right: 1rem;
  position: relative;
  z-index: 1;
}

.accordion-title {
  position: relative;
  z-index: 1;
}

.service-accordion-item .accordion-body {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.service-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transition: var(--transition);
}

.service-badge:hover::before {
  transform: scaleY(1);
}

.service-badge:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-badge i {
  font-size: 2.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  border-radius: 10px;
  transition: var(--transition);
}

.service-badge:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}

.service-badge div {
  flex: 1;
}

.service-badge h5 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.service-badge p {
  color: var(--gray-medium);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================
   PROCESO SECTION
   ========================================== */
.proceso-card {
  /* Diseño mejorado con sombras y efectos */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gray-light);
}

.proceso-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
}

/* Efecto de brillo en hover */
.proceso-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.proceso-card:hover::after {
  opacity: 1;
}

.proceso-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.proceso-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.proceso-card:hover .proceso-number {
  transform: scale(1.1) rotate(360deg);
  background: var(--accent-gold);
  color: var(--text-dark);
}

.proceso-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.proceso-card:hover .proceso-icon {
  transform: scale(1.15);
  color: var(--accent-gold);
}

/* ==========================================
   VALORES Y TECNOLOGÍA SECTION
   ========================================== */
.valor-card {
  /* Tarjetas con efectos glassmorphism */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  border: 1px solid rgba(52, 152, 219, 0.15);
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.valor-card:hover::before {
  transform: scaleX(1);
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.valor-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.valor-card:hover .valor-icon {
  transform: scale(1.15) rotateY(180deg);
  color: var(--accent-gold);
}

.valor-card p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

.tech-card {
  /* Diseño mejorado con gradientes sutiles */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
  transition: var(--transition);
}

.tech-card:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

.tech-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.tech-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.tech-card:hover .tech-icon {
  transform: scale(1.1);
  color: var(--accent-gold);
}

.tech-card h4 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.tech-list {
  list-style: none;
  padding: 0;
}

.tech-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--gray-dark);
}

.tech-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* ==========================================
   GALERÍA SECTION
   ========================================== */
.carousel-img-wrapper {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  /* Sombra interna para profundidad */
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.carousel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* Controles con nuevo color accent */
  background-color: var(--accent-color);
  border-radius: 50%;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--accent-gold);
  transform: scale(1.1);
}

.carousel-indicators button {
  background-color: var(--accent-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

/* ==========================================
   CONTACTO SECTION
   ========================================== */
.contacto-info {
  /* Diseño mejorado con gradientes */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid var(--gray-light);
}

.contacto-info h4 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.contacto-info h4 i {
  margin-right: 0.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 1.5rem;
  margin-top: 0.25rem;
}

.info-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.info-item p {
  color: var(--gray-medium);
  margin-bottom: 0;
}

.social-links h5 {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Efecto shine en botón Instagram */
.btn-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-instagram:hover::before {
  left: 100%;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  /* Borde sutil */
  border: 1px solid var(--gray-light);
}

.map-container iframe {
  border-radius: var(--border-radius);
}

.zona-trabajo-card {
  /* Gradiente profesional */
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Efecto decorativo de fondo */
.zona-trabajo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.zona-icon {
  font-size: 4rem;
}

.zona-trabajo-card h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.zona-trabajo-card p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  /* Footer con gradiente profesional */
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
}

.footer h5 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

/* Estilos para el crédito de desarrollo */
.footer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-link-dev {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-link-dev:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  /* Botón con gradiente accent */
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.scroll-top-btn:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .carousel-img-wrapper {
    height: 400px;
  }

  .service-badge {
    margin-bottom: 1.5rem;
  }

  .proceso-card,
  .tech-card,
  .valor-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .carousel-img-wrapper {
    height: 300px;
  }

  .zona-icon {
    font-size: 3rem;
  }
}
