body {
    margin:0;
    font-family: Arial, sans-serif;
    background:#f4f6f9;
}

/* HEADER */
.header {
    background:white;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-area img {
    height:120px;
}

.logo-area span {
    font-weight:bold;
}

/* HERO */
.hero {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:40px;
    padding:60px 20px;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    color:white;
}

.hero-text {
    max-width:400px;
}

.hero-text h1 {
    font-size:28px;
}

.hero-img img {
    max-width:450px;
    width:100%;
    border-radius:12px;
}

/* BOTÃO */
.btn {
    display:inline-block;
    background:#ff7a00;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    margin-top:15px;
}

/* PROVA */
.prova {
    margin-top:10px;
    font-size:14px;
}

/* CONTAINER */
.container {
    max-width:1000px;
    margin:auto;
    padding:20px;
}

/* SEÇÕES */
.section {
    background:white;
    padding:30px;
    margin-top:25px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.section:hover {
    transform:translateY(-5px);
}

.section img {
    width:100%;
    margin-top:15px;
    border-radius:10px;
}

/* FOOTER */
.footer {
    background:#4f46e5;
    color:white;
    text-align:center;
    padding:40px 20px;
}.img-box {
    width:100%;
    height:400px;
    overflow:hidden;
    border-radius:12px;
    margin-top:15px;
}

.img-box img {
    width:100%;
    height:120%;
    object-fit:cover;
}object-position: center 55%;
object-position: center 50%;
object-position: center 10%;

/* LINKS BONITOS */
.links-box {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:15px;
}

.link-card {
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;
    padding:15px;
    border-radius:10px;

    text-decoration:none;
    color:#333;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    transition:0.2s;
}

.link-card span {
    font-size:22px;
}

.link-card strong {
    display:block;
    font-size:15px;
}

.link-card p {
    font-size:13px;
    color:#777;
    margin:2px 0 0;
}

.link-card:hover {
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}