
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    width: 100%;
    height: 90px;
    background-color: #058af7; 
    display: flex;
    align-items: center;
}


.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    height: 20px;
}



.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    transition: 0.3s;
}

.nav a:hover {
    color: #ffd166;
}


.search input {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 200px;
}

/* HEADER */

.header{
    width:100%;
    background:#1e88e5;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

/* LOGO */

.logo{
    color:white;
    font-size:22px;
    font-weight:bold;
}

/* MENU */

.nav ul{
    display:flex;
    list-style:none;
}

.nav ul li{
    margin-left:25px;
}

.nav ul li a{
    text-decoration:none;
    color:white;
    font-size:18px;
    transition:0.3s;
}

.nav ul li a:hover{
    color:#ffd54f;
}

/* BOTON HAMBURGUESA */

.hamburguesa{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburguesa span{
    width:30px;
    height:4px;
    background:white;
    margin:4px;
}

/* VERSION CELULAR */

@media(max-width:768px){

.nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#1e88e5;
    display:none;
}

.nav ul{
    flex-direction:column;
    text-align:center;
}

.nav ul li{
    margin:15px 0;
}

.hamburguesa{
    display:flex;
}

.nav.active{
    display:block;
}

}

.menu-icon {
    color: white;
    font-size: 24px;
    display: none;
}

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .search input {
        width: 140px;
    }
}

.site-footer {
    background-color: #fefcfc; 
    color: rgb(8, 8, 8);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd100; 
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    border-radius: 50%;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgb(10, 10, 10);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd100;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: rgb(4, 4, 4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd100;
}

.footer-bottom {
    background-color: #2e0ee2; 
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section h4 {
        display: block;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}


.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo img{
    height: 60px;
}


.nav{
    display: flex;
    gap: 30px;
}

.nav a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
}

.nav a:hover{
    color: #00b8d4;
}


.search input{
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}


@media (max-width: 768px){

    .nav{
        position: absolute;
        top: 90px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    .nav.active{
        display: flex;
    }

    .nav-container{
        position: relative;
    }

   
    .nav-container::after{
        content: "\f0c9";
        font-family: FontAwesome;
        font-size: 28px;
        cursor: pointer;
        display: block;
    }
}

