@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.navbar{
    display: flex;
    flex-flow: row wrap;
    height: 100px;
    background: white;
    justify-content: center;
    align-items: center;
    position:fixed;
    width: 100%;
    border-bottom: #180F4A 1px solid;
}

.logo{
    flex:20%;
    margin-left:10%;
    /* border:1px solid red;  */
    text-align: left;
}

.logo h1{
    font-family: 'Lobster', cursive;
    color:#180F4A;
    font-size:34px;
}

/* ==== AGENDA CORUJINHA ==== */
/* seção centralizada logo abaixo do menu */
.agenda-coruja {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px; /* compensa o navbar fixo */
    margin-bottom: 20px;
}

/* card clicável com ícone e texto */
.agenda-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #180F4A;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.agenda-card:hover {
    background-color: #23196b;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.agenda-icon {
    font-size: 32px;
}

.agenda-textos h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.agenda-textos p {
    margin: 3px 0 0 0;
    font-size: 14px;
}

/* em telas menores, ocupa mais largura */
@media only screen and (max-width: 796px) {
    .agenda-coruja {
        padding-top: 130px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .agenda-card {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.search-container {
    display: flex;
    flex: 30%;
    justify-content: left;
    flex-flow: row wrap;
    align-items: center;
    border-color: aqua solid 1px;
}

.search-bar {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    width: 250px;
}

.search-bar:focus {
    border-color: #007bff;
}

.search-btn {
    padding: 10px 15px;
    font-size: 16px;
    background-color: orangered;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.search-btn:hover {
    background-color: #0056b3;
}

.menu{
    flex:30%;
   /* border:1px solid green;*/
    text-align:center;
    padding:20px;
}

.menu a{
    color:#180F4A;
    text-decoration: none;
    font-size:20px;
    padding:20px 16px; 
}

.menu a:hover{
    color:orangered;
    border-top:4px solid #180F4A;
}

.header{
    display: flex;
    flex-flow:row wrap;
    justify-content: center;
    align-items: top;
    background: white;
    padding-top:100px;
}

.headline{
    margin-left:10%;
    flex:40%;
    /* border:1px solid black; */
}

.headline h2{
    font-weight: 900;
    font-size:20px;
    color:#180F4A;
    padding:0;
    margin:0;
    margin-top: 0%;
}

.img-headline{
    margin-right:10%;
    flex:40%;
    /* border:1px solid deeppink; */
    text-align:center;
    align-content: center ;
}

table{
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

th, td{
    border-top: 1px solid rgb(0, 0, 0);
    border-left: 1px solid rgb(0, 0, 0);
    background-color: #ff620040;
    border-radius: 2px;
}

td{
    text-align: left;
}

footer{
    margin-top:100px;
    height: 400px;
    background-image:linear-gradient(180deg,#180F4A,#090422,black);
    text-align:center;
    border-top:5px solid #ff6200;
}

.aprendiz img{
    width: 500px;
}

.cor{
    background-color: #2e93ff6c;
}

.logo-rodape{
    padding:50px;
}

.aprendiz{
    font-family: 'Lobster', cursive;
    color:white;
    font-size:34px;
}

@media only screen and (min-width:796px) and (max-width: 1252px) {
    .navbar{
        height: 150px;
        position: relative;
    }
    .logo{
        flex:20%;
        margin-left:5%;
         /* border:1px solid red;  */
        text-align: left;
    }
    .menu{
        padding: 1px;
    }
    .menu a{
        padding: 20px;
    }
    .search-container {
      display: none;
    }
}

@media only screen and (max-width: 796px) {
    .navbar{
        height: 150px;
        position: relative;
    }
    .search-container {
        display: none;
    }
    .img-headline{
        display: none;
    }
    .menu a{
        padding: 2px;
    }
}
