:root {
  /* Paleta de colores tomada del logo */
  --color-primary: #19aea5;    /* Turquesa/Teal */
  --color-secondary: #08ca69;  /* Naranja */
  --color-accent: #10486a;     /* Azul oscuro */
  --color-dark: #121212;
  --color-light: #f5f5f5;
  --color-gray: #686868;
  --color-white: #ffffff;
  
  /* Tipografía */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Helvetica', 'Arial', sans-serif;
  
  /* Espaciado de secciones */
  --section-padding: 80px 0;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header y Navegación */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.header.scrolled {
  background-color: rgba(18, 18, 18, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  position: relative;
  font-size: 1rem;
}

.nav-links a:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover:before {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-white);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(18, 18, 18, 0.98);
  min-width: 240px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  margin-top: 5px;
  left: 0;
}

.dropdown-content a {
  color: white !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-content a:hover {
  background-color: rgba(25, 174, 165, 0.2);
  color: var(--color-primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/hero-background.png') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  color: var(--color-white);
  max-width: 600px;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 120px !important;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Secciones generales */
section {
  padding: var(--section-padding);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
}

/* Utilidades */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

/* Sección de Servicios */
.services {
  background-color: var(--color-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-description {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.service-link {
  color: var(--color-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Sección Acerca de */
.about {
  background-color: var(--color-white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--color-gray);
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

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

/* Sección de Testimonios */
.testimonials {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.testimonials .section-title {
  color: var(--color-white);
}

.testimonials .section-title:after {
  background-color: var(--color-secondary);
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-right: 20px;
  scroll-snap-align: start;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge, .product-discount {
  position: absolute;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
}

.product-badge {
  top: 10px;
  left: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.product-badge.offer {
  background-color: var(--color-secondary);
  top: 45px;
}

.product-discount {
  top: 10px;
  right: 10px;
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-accent);
}

.product-category {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-original {
  text-decoration: line-through;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  margin-top: auto;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Página de Productos */
.page-banner {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 100px 0 50px;
  text-align: center;
}

.page-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--color-light);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.separator {
  margin: 0 10px;
}

.current {
  color: var(--color-white);
  font-weight: 500;
}

.products-header {
  margin-bottom: 40px;
}

.products-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: var(--color-light);
  padding: 15px 20px;
  border-radius: 5px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-item label {
  font-weight: 500;
}

.filter-item select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.products-count {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* Características */
.features {
  background-color: var(--color-light);
}

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

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.feature-item p {
  color: var(--color-gray);
}

/* Detalle de Producto */
.product-detail {
  padding: 100px 0 50px;
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

/* Mobile Styles for Product Detail */
@media (max-width: 768px) {
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.product-gallery {
  position: relative;
}

.main-image-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  cursor: pointer;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
  opacity: 1;
}

.product-info h1 {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-price-detail {
  display: flex;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.product-price-detail .original {
  text-decoration: line-through;
  color: var(--color-gray);
  font-size: 1.2rem;
  margin-right: 15px;
}

.product-price-detail .current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.product-price-detail .discount {
  margin-left: 15px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-description {
  margin-bottom: 30px;
  color: var(--color-gray);
  line-height: 1.7;
}

.product-features h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.product-features ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.product-features li {
  margin-bottom: 10px;
  color: var(--color-gray);
  position: relative;
}

.product-features li:before {
  content: "✓";
  color: var(--color-primary);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

.product-meta {
  margin-bottom: 30px;
}

.meta-item {
  margin-bottom: 10px;
}

.meta-title {
  font-weight: 600;
  color: var(--color-accent);
  margin-right: 10px;
}

.related-products {
  background-color: var(--color-light);
}

.contact-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  background-color: #25d366;
  color: white;
  padding: 10px 16px !important;
  border-radius: 30px !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  width: auto !important;
  transition: all 0.3s;
}

.contact-whatsapp i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.contact-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Sección de Llamado a la acción */
.cta {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  text-align: center;
}

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

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

.cta .btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 70px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-logo .logo {
  margin-bottom: 15px;
  width: 180px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  width: 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-white);
  position: relative;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a, .footer-section p {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 180px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    width: 260px;
  }
}

/* --- ANIMACIÓN SKELETON LOADING (CORREGIDO) --- */
.skeleton {
  background: #eceff1;
  background: linear-gradient(110deg, #eceff1 8%, #f5f7f8 18%, #eceff1 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
  display: inline-block; /* Fuerza a que respete el width y height en el HTML */
  position: relative;
  overflow: hidden;
}

/* Oculta de forma segura los textos internos temporales como "Cargando..." */
.skeleton * {
  visibility: hidden !important;
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}

/* Botón Flotante de WhatsApp - Latido y Brillo Sincronizado */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  
  /* Animación corrida que une el cambio de tamaño y la luz trasera */
  animation: latidoConBrilloConstante 1.1s infinite ease-in-out;
  
}

/* Cambio de color base al pasar el cursor */
.whatsapp-button:hover {
  background-color: #128c7e;
}

/* La magia: Sincronización exacta de tamaño y luz decreciente/creciente */
@keyframes latidoConBrilloConstante {
  0% {
    transform: scale(1);
    /* Luz apagada o mínima en reposo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
  }
  
  /* El botón se expande y emite el destello de luz brillante */
  40% {
    transform: scale(1.12);
    /* Sombra difuminada amplia que simula el destello de luz brillante */
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.4);
  }
  
  /* La luz viaja hacia afuera y decrece en intensidad mientras el botón se encoge */
  70% {
    transform: scale(0.96);
    /* La onda de luz se expande más pero se desvanece (decrece la luz) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 25px rgba(37, 211, 102, 0);
  }
  
  /* Retorno al estado inicial para enganchar el siguiente ciclo de corrido */
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Aplicar fondo oscuro al menú SOLO en detalle de producto --- */
body.page-dark-header #header, 
body.page-dark-header .header {
  background-color: #121212 !important; /* El color oscuro/negro de tu marca */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Asegura que los textos del menú sean blancos en esta página desde el inicio */
body.page-dark-header #header .nav-links a,
body.page-dark-header .header .nav-links a {
  color: #ffffff !important;
}

/* --- CORRECCIÓN DE BREADCRUMBS EN DETALLE DE PRODUCTO Y TIENDA (productos.html) --- */
.product-detail .breadcrumbs,
.shop-breadcrumbs {
  padding: 15px 0;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #686868;
  position: relative;
  z-index: 500; /* Debajo del header que tiene 1000 */
}

/* Enlaces (Inicio / Productos) en gris oscuro para que resalten */
.product-detail .breadcrumbs a,
.shop-breadcrumbs a {
  color: #333333 !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Efecto hover al pasar el mouse por los enlaces */
.product-detail .breadcrumbs a:hover,
.shop-breadcrumbs a:hover {
  color: var(--color-primary, #19aea5) !important;
}

/* El separador "/" en un tono gris intermedio */
.product-detail .breadcrumbs .separator,
.shop-breadcrumbs .separator {
  margin: 0 8px;
  color: #a0aec0;
}

/* La página actual (Detalle del Producto / Productos) en el color principal de la marca */
.product-detail .breadcrumbs .current,
.shop-breadcrumbs .current {
  color: var(--color-accent, #10486a); 
  font-weight: 600;
}

.service-card-new {
  background-color: var(--color-white);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  text-decoration: none;
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-title {
  color: var(--color-accent, #10486a);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 20px;
  margin: 10px 0 0;
  text-align: left;
}

.service-card-description {
  color: #666;
  font-size: 0.95rem;
  padding: 0 20px;
  margin: 0;
  line-height: 1.5;
}

.service-card-link {
  color: var(--color-accent, #10486a);
  font-weight: 600;
  padding: 0 20px 20px;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link:hover {
  color: var(--color-primary, #1aaea5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}