@media print {
    body {
        display: none !important; /* Oculta todo el contenido al imprimir */
    }
}


* {
    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;
    }
}

    .tabla-responsive {
      font-family: Arial, sans-serif;
      margin: 20px;
      background-color: #f9f9f9;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    th, td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #007bff;
      color: white;
    }

    img {
      max-width: 100px;
      height: auto;
      border-radius: 6px;
    }

    @media (max-width: 600px) {
      table {
        font-size: 14px;
      }
      img {
        max-width: 60px;
      }
    }

.intro-billete {
  background: linear-gradient(to right, #f8f9fa, #eef2f5);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.intro-billete h1 {
  color: #0055a4;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #cfd8dc;
  padding-bottom: 0.5rem;
}

.intro-billete p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 0.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;
}


