
.header {
    background: #000;
    color: white;
    padding: 1rem 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}


.search-bar button {
    position: absolute;
    right: 3px;
    top: 5px;
    bottom: 5px;
    color: #000000;
    border: none;
    border-radius: 40px;
    padding: 0 1rem;
    cursor: pointer;
}

.search-bar {
    max-width: 600px;
    position: relative;
    margin: 0px;
    padding: 0px;
}

.search-bar input {
    padding: 10px;
}

i.fa.fa-search.negro {
    color: #000;
}


.nav1{
    max-width: 70%;
    display: inline-block;
}

.nav2 {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 400px;
}

input::-webkit-input-placeholder {
    padding-left: 21px;
}

.btn_inicio_session {
    width: 160px;
    height: 40px;
    background: rgba(217, 217, 217, 0.3);
    border-radius: 10px;
    color: #fff !important;
    line-height: 38px;
    text-align: center;
    text-decoration: none !important;
    font-weight: 600 !important;
    padding-top: 0px !important;
    font-size: 13px;
    text-transform: capitalize !important;
}


.hr_header {
    border: 2px solid #ffffff33;
    max-width: 1373px;
    margin: 0 auto;
    margin-top: 20px;
}

.nav2 a {
    color: #fff;
    padding-top: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

a.Btn_inicio{
    color: #fff;
    padding-top: 10px;
    text-decoration: none;
    font-weight: 500;
    background: #d9d9d954;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: capitalize;
}





/* Estilos para el pie de página */
.site-footer {
    border-top: 1px solid #ffffff2e;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-slogan {
    margin: 0.5rem 0 1rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-description {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1.05rem;
}

.footer-section h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}