#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Fondo blanco */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Color del borde externo */
    border-top: 5px solid #3498db; /* Color del borde animado */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body.loaded #loading-screen {
    display: none;
}


html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Lato', sans-serif;
    margin: 0px;
    padding: 0px;
}

/* NAV */
/* Barra de navegación */
.navTop {
    background-color: #111;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navTop:hover {
    background-color: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contenedor de los elementos */
.navContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.navLogo p {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s ease;
}

.navLogo p:hover {
    color: #4CAF50;
}

/* Menú de navegación */
.navMenu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.menuItem {
    position: relative;
}

.menuItem a {
    color: lightgray;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menuItem a:hover {
    color: #4CAF50;
    transform: scale(1.05);
}

/* Oferta especial */
.specialOffer {
    background-color: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.specialOffer:hover {
    transform: scale(1.05);
    background-color: #45a049;
}

/* Menú hamburguesa (para pantallas pequeñas) */
.hamburgerMenu {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburgerMenu span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Submenús */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: 200px; /* Ancho del submenú */
    z-index: 999;
}

.menuItem:hover .submenu {
    display: block;
}

.submenu li {
    padding: 10px;
    color: lightgray;
    text-align: left;
}

.submenu li a {
    color: lightgray;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.submenu li a:hover {
    background-color: #444;
    color: white;
}

/* Estilos para pantallas pequeñas (móviles) */
@media (max-width: 890px) {
    .menuItem {
        width: 100%;
        text-align: center;
    }

    .submenu {
        position: static;
        width: 100%;
        background-color: #444;
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
        display: none; /* Submenú oculto por defecto */
    }

    .menuItem:hover .submenu {
        display: block;
    }
}

/* Estilos para pantallas pequeñas */
@media (max-width: 890px) {
    .navContainer {
        flex-direction: column;
        align-items: center;
    }

    .navMenu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background-color: #333;
        padding: 15px 0;
        border-top: 2px solid #444;
        position: absolute;
        top: 100px; /* Posiciona el menú debajo de la barra de navegación */
        left: 0;
    }

    .navMenu.active {
        display: flex;
    }

    .menuItem {
        width: 100%;
        text-align: center;
    }

    .specialOffer {
        font-size: 14px;
        margin-top: 10px;
    }

    .hamburgerMenu {
        display: flex;
        margin-left: auto;
    }

    .hamburgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

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

    .hamburgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1 1 22%;
    margin: 10px;
}

.featureIcon {
    width: 60px;
    height: 60px;
}

.featureTitle {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.featureDesc {
    color: gray;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .feature {
        flex: 1 1 45%;
        margin: 10px 0;
    }

    .featureIcon {
        width: 50px;
        height: 50px;
    }

    .featureTitle {
        font-size: 16px;
    }

    .featureDesc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .feature {
        flex: 1 1 45%;
        margin: 10px 0;
    }

    .features {
        gap: 10px;
        padding: 20px;
    }

    .featureIcon {
        width: 40px;
        height: 40px;
    }

    .featureTitle {
        font-size: 14px;
    }

    .featureDesc {
        font-size: 10px;
    }
}
/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    height: 70vh; 
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../img/BG1.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Content */
.hero-content {
    max-width: 50%;
    z-index: 2;
    color: #f2f2f2;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f61;
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ff3d30;
    transform: scale(1.05);
}

/* Carousel */
.hero-carousel {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, transform 1s ease;
    opacity: 0;
    transform: translateX(100%);
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1; 
    transform: translateX(0);
    z-index: 1;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-image {
    max-width: 100%;
    max-height: 90%; 
    object-fit: contain;
}


@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        text-align: center;
        align-items: center;
    }
    .hero-content {
        max-width: 90%;
        text-align: center;
        align-items: center;
    }
    .hero-carousel {
        margin-top: 100px;
        width: 90%;
        height: auto;
    }
}
/*Gener seccion*/

.clothing-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f8f9fa;
  }
  
  .category {
    flex: 1;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
  }
  
  .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .category img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-bottom: 2px solid #000;
    transition: transform 0.3s ease;
  }
  
  .category:hover img {
    transform: scale(1.05);
  }
  
  .category h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
    text-transform: uppercase;
  }
  
  .category button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .category button:hover {
    background-color: #444;
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .clothing-section {
      flex-direction: column;
      gap: 30px;
    }
  }

/* SALES */

.newSeason{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 15px;
}

.nsItem{
    flex: 1;
    color: white;
    text-align: center;
}

.nsImg{
    width: 100%;
}

.nsButton {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid transparent; 
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.nsButton:hover {
    background: linear-gradient(45deg, #ff6f61, #ffbb86); 
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nsButton:focus {
    outline: none;
    border: 2px solid #feb47b;
}

.nsButton:active {
    transform: translateY(1px); 
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


.nsTitle{
    font-size: 40px;
}

footer{
    display: flex;
}

.footerLeft{
    flex: 2;
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.fMenuTitle{
    font-size: 21px;
    font-weight: 800;
}

.footerRight{
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.fMenuItem{
    list-style: none;
    font-size: 18px;
    padding-bottom: 5px;
}

.fButton{
    border-radius: 5px;
    padding: 5px;
    background-color: #111;
    color: white;
    border-radius: 5px;
}

.fIcons{
    display: flex;
}

.fIcon{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.copyright{
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* SHOE CARD */

.container {
    padding: 20px;
}

.store h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.shoes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 0 0px;
}

/* Estilo para las tarjetas */
.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s forwards;
}

.card:nth-child(odd) {
    animation-delay: 0.3s;
}

.card:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo de la imagen */
.card .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #f4f4f4;
    transition: transform 0.3s ease;
}

.card:hover .image img {
    transform: scale(1.05); /* Efecto de zoom en la imagen */
}

/* Estilo de los detalles */
.card .details {
    padding: 15px;
}

.description p {
    font-size: 14px;
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

/* Estilo del precio */
.card .price {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

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

.card:hover .details {
    background-color: #f9f9f9;
}

/* Estilo del carrito */
.card .cart {
    text-align: center;
    margin-top: 15px;
}

.card .cart img {
    width: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover sobre el icono de carrito */
.card .cart img:hover {
    transform: scale(1.2);
}

.card .cart button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.card .cart button:hover {
    background-color: #ff4500;
}

/* Medias Query para pantallas pequeñas */
@media (max-width: 768px) {
    .store h1 {
        font-size: 30px; /* Reducir tamaño del título */
    }

    .shoes {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas como mínimo en pantallas más pequeñas */
    }

    .card {
        padding: 5px; /* Reducir el padding de las tarjetas */
        font-size: 0.9rem; /* Reducir el tamaño de fuente dentro de las tarjetas */
    }

    .card .image img {
        height: 150px; /* Reducir altura de las imágenes */
    }

    .description p {
        font-size: 12px; /* Reducir tamaño del texto en la descripción */
    }

    .card .price {
        font-size: 16px; /* Reducir tamaño del precio */
    }

    .card .cart button {
        padding: 8px 15px; /* Reducir tamaño del botón */
        font-size: 14px; /* Reducir tamaño del texto en el botón */
    }
}

@media (max-width: 480px) {
    .store h1 {
        font-size: 24px; /* Ajustar aún más el tamaño del título */
    }

    .card {
        font-size: 0.8rem; /* Ajustar el tamaño de la fuente en pantallas muy pequeñas */
    }

    .card .cart button {
        font-size: 12px; /* Ajustar tamaño de texto del botón */
        padding: 6px 12px; /* Reducir padding del botón */
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    object-fit: contain
}

.close {
    position: absolute;
    top: 100px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* FOOTER */
/* General Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #eaeaea;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }
  
  /* Footer Columns */
  .footer-column {
    flex: 1 1 30%;
    min-width: 220px;
    box-sizing: border-box;
  }
  
  .footer-column h4 {
    color: #f4a261;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .footer-column p, 
  .footer-column ul {
    line-height: 1.6;
    font-size: 0.85rem;
    text-align: justify;
    margin-right: 30px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
  }
  
  .footer-column ul li i {
    margin-right: 10px;
    color: #f4a261;
  }
  
  .footer-column ul li a {
    color: #f4a261;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #fff;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #f4a261;
    font-size: 1.4rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.85rem;
  }
  
  .footer-bottom a {
    color: #f4a261;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s;
  }
  
  .footer-bottom a:hover {
    color: #fff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
    }
  
    .footer-column {
      flex: 1 1 100%;
      min-width: 100%;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 30px 15px;
    }
  
    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 15px;
    }
  
    .footer-column p, 
    .footer-column ul li {
      font-size: 0.85rem;
    }
  
    .social-icons a {
      font-size: 1.2rem;
    }
  
    .footer-bottom {
      font-size: 0.8rem;
    }
  
    .footer-column p, 
    .footer-column ul {
      text-align: center;
      margin-right: 0;
    }
  }


/* Estilo base para la sidebar */
.sidebar {
    border-right: 1px solid #ddd;
    background-color: #f8f9fa;
    min-height: 100vh;
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar-content {
    padding: 1rem;
}

/* Estilo para el botón de toggling */
.toggle-sidebar {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        max-width: 300px;
        transform: translateX(-100%);
        z-index: 1050;
        background-color: white;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-content {
        padding-top: 3rem;
    }

    main {
        padding: 1rem;
    }
}
/* CATALOG */
header {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
/* CATALOG */
header {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
/* Estilo principal del formulario */
.filter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

/* Grupos de filtros */
.filter-group {
    display: flex;
    align-items: center;
    flex: 1 1 20%; /* Mantenemos un espacio ajustado para cada campo */
    min-width: 180px;
    position: relative;
}

/* Etiquetas */
.filter-group label {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin-right: 5px;
    white-space: nowrap;
}

/* Inputs y selects */
.filter-group input,
.filter-group select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
}

/* Efectos de foco */
.filter-group input:focus,
.filter-group select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

/* Botón para aplicar filtros */
.btn-filter {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out;
    flex: 1 1 100%; /* Toma el 100% del ancho */
    max-width: 200px;
    margin-top: 10px;
}

.btn-filter:hover {
    background-color: #0056b3;
}

/* Adaptabilidad para pantallas medianas */
@media (max-width: 768px) {
    .filter-form {
        flex-wrap: wrap;
        gap: 12px;
    }
    .filter-group {
        flex: 1 1 45%; /* Dos columnas en pantallas medianas */
    }
    .btn-filter {
        flex: 1 1 100%;
        margin-top: 10px;
    }
}

/* Adaptabilidad para pantallas pequeñas */
@media (max-width: 480px) {
    .filter-form {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    .filter-group {
        flex: 1 1 100%; /* Campos de 100% de ancho en pantallas pequeñas */
    }
    .btn-filter {
        flex: 1 1 100%;
        max-width: none;
        margin-top: 15px;
    }
}

/* Estilo para el botón flotante (FAB) */
.fab-filter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.fab-filter:hover {
    background-color: #60ab62;
    transform: scale(1.1);
}

/* Estilo para el contenedor de filtros (modal personalizado) */
.filter-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
}

/* Mostrar el contenedor de filtros cuando es visible */
.filter-popup.show {
    display: block;
    transform: translateY(0);
}

/* Estilo para los grupos de filtros dentro del pop-up */
.filter-popup .filter-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.filter-popup label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: capitalize;
}

/* Estilo de inputs y selects */
.filter-popup input,
.filter-popup select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Efecto al enfocar los inputs */
.filter-popup input:focus,
.filter-popup select:focus {
    border-color: #007bff;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Botón de filtro dentro del pop-up */
.filter-popup .btn-filter {
    padding: 14px 18px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.filter-popup .btn-filter:hover {
    background-color: #4CAF50;
    transform: scale(1.05);
}

.filter-popup .btn-filter:active {
    transform: scale(1);
}

/* Adaptabilidad para pantallas pequeñas */
@media (max-width: 768px) {
    .filter-popup {
        padding: 15px;
        border-radius: 10px;
    }
}


/* PDF */

.catalog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .catalog-card {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
  }
  
  .catalog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
  }
  
  .catalog-card-content {
    padding: 10px;
  }
  
  .catalog-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .catalog-card-content a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .catalog-card-content a:hover {
    text-decoration: underline;
  }
  
  .map-section {
            padding: 20px;
            text-align: center;
        }
        .map-container {
            width: 100%;
            height: 500px;
            margin: 0 auto;
        }
        iframe {
            border: 0;
            width: 100%;
            height: 100%;
        }
  