* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #1E90FF;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.hidden {
    display: none;
}

.nav-btn {
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1;
    cursor: pointer;
}

.nav-btn i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: all .3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav {
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 0 20px;
    line-height: 80px;
    font-size: 16px;
    font-weight: 500;
}

nav ul li:hover > ul {
    display: block;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 10px 0;
    background-color: #1E90FF;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    border-radius: 0 0 4px 4px;
}

nav ul ul li {
    width: 200px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

nav ul ul li a {
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
}

/*.logo img {
    height: 60px;
} */

main {
    margin-top: 80px;
    
}

.aireHome
{
    padding: 56px 0;
}

.programas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.programa {
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    transition: all .3s;
    min-width: 370px;
    max-width: 370px;
    min-height: 340px;
    max-height: 340px;
}

.programa:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.programa h2,
.programa p,
.programa .boton {
    margin-left: 10px;
}

.programa img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}


    .programa .contenido {
        padding: 20px;
    }
    
    .programa h4 {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 600;
    }
    
    .programa p {
        line-height: 1.5;
        font-size: 16px;
        font-weight: 400;
    }
    
    .boton {
        background-color: #0066CC;
        color: #FFFFFF;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease-in-out;
    }
    
    .boton:hover {
        background-color: #004D99;
    }
    
    .app {
        background-color: #FFFFFF;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .app-info {
        display: flex;
        align-items: center;
        padding: 30px;
    }
    
    .app-info img {
        width: 129px;
        height: 129px;
        margin-right: 30px;
    }
    
    .app-details h2 {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .app-details p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .download-button {
        background-color: #0066CC;
        color: #FFFFFF;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .home-button {
        background-color: #1E90FF;
        color: #FFFFFF;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .download-button:hover {
        background-color: #004D99;
    }
    
    .screenshots {
        display: flex;
        overflow-x: auto;
        padding: 27px;
        width: 100%;
        white-space: nowrap;
    }
    
    .screenshots img {
        width: 27%;
        height: auto;
        border-radius: 10px;
        margin-right: 20px;
    }
    
    .icon {
        border-radius: 10px;
    }
    
    .manito {
        cursor: pointer;
    }
    
    footer {
        background-color: #1E90FF;
        color: white;
        padding: 60px 0;
    }
    
    footer .columnas {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    footer .columna {
        width: 100%;
        margin-bottom: 30px;
    }
    
    @media (min-width: 768px) {
        .footer .columna {
            width: 30%;
        }
    }
    
    footer .columna h3 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }
    
    footer ul {
        list-style: none;
    }
    
    footer ul li {
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    footer ul li a {
        color: white;
        font-size: 16px;
        font-weight: 400;
    }
    
    footer form {
        display: flex;
        margin-top: 20px;
    }
    
    footer input[type="email"] {
        width: 70%;
        padding: 10px;
        border-radius: 4px 0 0 4px;
        border: none;
        font-size: 16px;
        font-weight: 400;
    }
    
    footer button[type="submit"] {
            width: 30%;
            background-color: white;
            color: #1E90FF;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 10px;
            cursor: pointer;
            transition: all .3s;
        }
        
        footer button[type="submit"]:hover {
            background-color: #F5F5F5;
        }
        
        @media (max-width: 767px) {
            header {
                height: 60px;
            }
        
            .nav-btn {
                display: block;
            }
        
            nav {
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #1E90FF;
                flex-direction: column;
                align-items: flex-start;
                overflow: hidden;
                max-height: 0;
                transition: max-height .3s;
            }
        
            nav.open {
                max-height: 500px;
            }
        
            nav ul {
                flex-direction: column;
            }
        
            nav ul li {
                width: 100%;
            }
        
            nav ul li a {
                line-height: 50px;
            }
        
            main {
                margin-top: 140px;
            }
        
            .programa {
                min-width: 100%;
                max-width: 100%;
                min-height: auto;
                max-height: auto;
            }
        
            footer .columna {
                width: 100%;
            }
        }
            