* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 10px 20px;
    color: white;
}

.header_logo img{
    width: 75px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

nav ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
    transform: scale(1.1);
}

.header_2{
    display: none;
}

#toggleNav{
    background-image: none;
    text-transform: none;
    background: none; /* No background color */
    border: none;    /* No border */
    padding: 0;      /* Remove default padding */
    margin: 0;       /* Remove default margin */
    cursor: pointer; /* Indicate it's clickable */
    font-family: inherit; /* Inherit font from parent for text inside button (if any) */
    outline: none;   /* Remove outline on focus for a cleaner look, but consider accessibility */
    -webkit-appearance: none; /* For Safari/Chrome to reset default button styles */
    -moz-appearance: none;    /* For Firefox */
}

@media (max-width: 1000px){
    nav{
        display: none;
    }
    .header_2 {
        display: block;
        font-family: Arial, sans-serif;
        text-align: center;
    }

    #toggleNav img{
        width: 50px;
        background-color: transparent !important;
    }
    #navMenu {
        display: none;
        margin-top: 20px;
    }

    #navMenu ul {
        list-style: none;
        padding: 0;
    }

    #navMenu ul li {
        background-color: #333;
        margin: 5px 0;
        padding: 10px;
    }

    #navMenu ul li a {
        color: white;
        text-decoration: none;
        display: block;
    }
}
.hero-billetes {
  background: linear-gradient(to right, #f6f6f6, #ffffff);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.hero-billetes::before {
  content: "";
  background: url('/img/billete-euro-0.png') no-repeat center/contain;
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-billetes .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-billetes h1 {
  font-size: 4rem;
  color: #3a3a3a;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: serif;
}

.hero-billetes h2 {
  font-size: 1.4rem;
  color: #555;
  font-weight: 400;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.content_1{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px;
}

.content_1 a {
  text-decoration: none;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 12px 24px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.content_1 a:hover,
.content_1 a:focus {
  background-color: #0052cc;
  color: #ffffff;
  border-color: #0052cc;
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
  transform: translateY(-2px);
}

.content_1 a:active {
  transform: scale(0.98);
}


.seccion-venta {
  font-size: 2.5rem;
  color: #4a148c; /* púrpura intenso, elegante */
  text-align: center;
  margin: 60px auto 30px;
  margin-left:10%;
  position: relative;
  display: inline-block;
  font-family: serif;
  font-weight: 700;
  padding-bottom: 10px;
  
}

.seccion-venta::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #ba68c8, #ce93d8);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Contenedor de filtros */
.filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

/* Inputs de filtro */
.filtros input {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.filtros input:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.4);
}

@media (max-width: 600px) {
  .filtros {
    flex-direction: column;
    align-items: center;
  }
}
.productos {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}

.producto {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    width: 25%;
    min-width: 300px;
    transition: transform 0.3s;
}

.producto:hover {
    transform: scale(1.05);
}

.producto img {
    width: 100%;
    border-radius: 5px;
}

.producto button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.producto button:hover {
    background: #0056b3;
}


.producto p{
    font-size: x-large;
    font-weight: 900;
    color: darkblue;
}


.producto button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.producto button:hover {
    background: #0056b3;
}

/* En tu archivo CSS (monedas.css o style.css) */
.producto_modal {
    display: none; /* Muy importante: Oculto por defecto */
    position: fixed; /* Para que se quede fijo en la pantalla */
    z-index: 1000; /* Asegúrate de que esté por encima de todo lo demás */
    left: 0;
    top: 0;
    width: 100%; /* Ocupa todo el ancho */
    height: 100%; /* Ocupa todo el alto */
    overflow: auto; /* Para poder hacer scroll si el contenido es muy largo */
    background-color: rgba(0,0,0,0.7); /* Fondo oscuro semitransparente */
    justify-content: center; /* Centra horizontalmente el contenido */
    align-items: center; /* Centra verticalmente el contenido */
}

.producto_modal .modal-content {
    background-color: #fefefe;
    margin: auto; /* Para centrarlo si el flexbox no funciona completamente como esperas */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* O el ancho que prefieras */
    max-width: 600px; /* Ancho máximo para que no sea demasiado grande en pantallas grandes */
    border-radius: 8px;
    position: relative; /* Para el botón de cerrar */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.modal-content img {
    width: 70%;
    border-radius: 5px;
}

.modal-content h3{
    font-size: xx-large;
}
.modal-content p{
    color: darkblue;
    font-size: xx-large;
    width: 100%;
    display: flex;
    justify-content: center;
}
.cerrar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.cerrar:hover{
    color: red;
}

textarea {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Estilo general del formulario */
#form-info {
    max-width: 500px;
    margin: auto;
    padding: 10px 20px 10px 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Etiquetas */
#form-info label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

/* Inputs y textarea */
#form-info input[type="email"],
#form-info textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#form-info input[type="email"]:focus,
#form-info textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.15);
  outline: none;
}

/* Botón de envío */
#form-info input[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: #0077ff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#form-info input[type="submit"]:hover {
  background-color: #005fcb;
  transform: translateY(-2px);
}

/* Responsive: mejora en pantallas pequeñas */
@media (max-width: 600px) {
  #form-info {
    padding: 1.5rem;
  }
}



/* Estilos generales */
.contact {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #bfbdbd;
    margin: 0;
    padding: 40px;
    color: #333;
}

/* Título principal */
.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Contenedor del formulario */
.contacto-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo del formulario */
.contacto-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left;
}

/* Subtítulo */
.contacto-form h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Grupo de entrada */
.input-group {
    margin-bottom: 15px;
}

/* Etiquetas */
.input-group label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Campos de entrada */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Botón de enviar */
.btn-enviar {
    background: #4CAF50;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Efecto hover */
.btn-enviar:hover {
    background: #45a049;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-form {
        max-width: 90%;
    }
}



/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-container p {
    margin: 5px 0;
    font-size: 14px;
}

/* Estilo para el enlace de Facebook */
.facebook-link {
    color: #1877F2;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.facebook-link i {
    margin-right: 5px;
}

.facebook-link:hover {
    text-decoration: underline;
}
.legal{
    display:flex;
    justify-content:center;
    margin-bottom:50px;
    margin-top:25px;
    flex-wrap: wrap;
}
.legal p{
    margin-left:10px;
}
.legal a{
    margin-left:10px;
    color:white;
}
.legal a:hover{
    color:rgba(0,0,0,0.5);
}
