/* reset  basico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #eaf6ff;
    color: #333;
}

/* cabeçalho */
header {
    background-color: #b8dcff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* logo */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo > a img {
    width: 250px;
    border-radius: 15px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.logo-text h1 {
    color: #1d4e89;
    font-size: 1.2rem;
}
.flags {
    display: flex;
    gap: 8px;
    align-items: center;
}
.flags img {
    width: 28px;
    height: auto;
}
/* menu */
.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.menu a {
    text-decoration: none;
    color: #1d4e89;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}
.menu a:hover,
.menu a.active {
    background-color: #1d4e89;
    color: white;
    box-shadow: 0 4px 12px rgba(29, 78, 137, 0.3);
}
.menu-toggle {
    display: none;
}
/* rodapé */
footer {
    margin-top: 80px;
    background: #1d4e89;
    color: white;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer-col h3 {
    margin-bottom: 20px;
    color: #ffffff;
}
.footer-col p {
    line-height: 1.8;
    color: #dde8f5;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    color: #dde8f5;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col a:hover {
    color: #87CEFA;
    padding-left: 6px;
}
.footer-bottom {
    border-radius: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 18px;
    font-size: 0.95rem;
}
/* index */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
section {
    background: rgba(255, 255, 255, 0.78);
    margin-bottom: 45px;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(29, 78, 137, 0.12);
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
section.show-section {
    opacity: 1;
    transform: translateY(0);
}
section h1 {
    color: #1d4e89;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
section h2 {
    color: #256fb0;
    margin: 25px 0 15px;
    font-size: 1.6rem;
}
section h3 {
    color: #4a90e2;
    margin: 20px 0;
    font-size: 1.3rem;
}
section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}
hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #4a90e2, transparent);
    margin: 30px 0;
}
section img{
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    display: block;
    margin: 25px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
section a{
    display: inline-block;
    text-decoration: none;
    background-color: #4a90e2;
    color: white;
    padding: 13px 24px;
    margin: 10px 10px 0 0;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}
section a:hover {
    background-color: #1d4e89;
    transform: translateY(-3px);
}
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero .texto {
    flex: 1;
}
.hero .imagem {
    flex: 1;
}
.hero .imagem img {
    width: 100%;
    border-radius: 20px;
}
.botoes {
    text-align: center;
    margin-top: 30px;
}
.botoes a {
    display: inline-block;
    margin: 10px;
    padding: 14px 25px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold
}
.botoes a:hover {
    background-color: #1d4e89;
}

.wo {
    display: flex;
    align-items: center;
    gap: 40px;
}
.wo .imagem {
    flex: 1;
}
.wo .texto {
    flex: 1;
}
.wo img {
    width: 100%;
    border-radius: 20px;
}
.inklusion {
    display: flex;
    align-items: center;
    gap: 40px;
}
.inklusion .imagem {
    flex: 1;
}
.inklusion .texto {
    flex: 1;
}
.inklusion img {
    width: 100%;
    border-radius: 20px;
}
.inklusion ul {
    margin: 20px 0 25px 25px;
}
.inklusion li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333;
}
/* video */
.video-section {
    background: transparent;
    box-shadow: none;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-cotainer {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.video-cotainer iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.kooperationen {
    text-align: left;
    background: linear-gradient(135deg, #dff3ff, #ffffff);
}
@media(max-width: 768px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    .logo > a img {
        width: 180px;
    }
    .menu-toggle {
        display: block;
        background: #1d4e89;
        color: white;
        border: none;
        font-size: 2rem;
        padding: 8px 15px;
        border-radius: 12px;
        cursor: pointer;
        margin: 20px auto 10px;
    }
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 15px;
    }
    .menu.show {
        display: flex;
    }
    .menu a {
        width: 90%;
        text-align: center;
    }
    main {
        padding: 25px 15px;
    }
    section {
        padding: 28px 22px;
        border-radius: 22px;
    }
    section h1 {
        font-size: 1.8rem;
    }
    section h2 {
        font-size: 1.4rem;
    }
    section p {
        font-size: 1rem;
    }
    section a {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }
}
#typing-title::after {
    content: "|";
    animation: blink 0.8s infinite;
}
@keyframes blink {
    50%{
        opacity: 0;
    }
}
