@font-face {
    font-family: 'fuente1';
    src: url('/fuentes/Kanit/Kanit-Regular.ttf'),
         url('/fuentes/Libre_Baskerville/LibreBaskerville-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: fuente1;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.brand-logo img {
    height: 70px;
    margin-left: 50px;
}

/* Estilos para la barra de navegación superior */
.top-nav {
    background-color: #1d1c1c;
    color: #fff;
    padding: 3px 0;
    align-items: right;
    font-size: 24px;
    padding: 3px 0;
    display: flex;
    justify-content: space-between;
    
}

.top-nav ul {
    list-style-type: none;
    text-align: right;
}

.top-nav ul li {
    display: inline;
    margin: 0 10px;
}

.top-nav ul li a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

/* Estilos para la barra de navegación secundaria */
.secondary-nav {
    background-color: #272727;
    padding: 3px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secondary-nav ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.brand2-logo img {
    height: 50px;
}

.product-list {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.product-list li {
    margin-right: 20px;
    margin: 0 20px;
}


/* Mapa Maps*/

.contact-container {
    width: 90%;
    margin: auto;
    background: #ececec;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.map-container {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: #555;
}

.contact-info i {
    color: #007BFF;
    margin-right: 10px;
}

/*Tarjeta de qr*/

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.id-card {
    background-color: white;
    width: 450px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.details h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.details p {
    margin: 5px 0;
    color: #555;
}

.qr-code img {
    width: 150px;
    height: 150px;
    margin-top: 20px;
}

/*forms*/

.contact-form {
    max-width: 600px;
    margin: auto;
}

.contact-form h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.contact-form form div {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    display: block;
    width: 103.5%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* FOOTER*/

.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-column {
    flex: 1;
}
.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
}
.footer-column ul li a:hover {
    color: #fff;
}
.footer-contact p {
    margin: 5px 0;
}
.footer-social a {
    margin-right: 10px;
    color: #bbb;
    text-decoration: none;
}

.footer-social img{
    width: 30px;
    height: 30px;
    margin-top: 10px;
    padding: 0 10px;
}

.footer-social a:hover {
    color: #fff;
}
.footer-newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}
.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #f0ad4e;
    color: #111;
    cursor: pointer;
}
.footer-newsletter button:hover {
    background-color: #ec971f;
}