#ffca28* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background-color: #f4f7fb;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #0d47a1, #1976d2, #42a5f5);
    color: white;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

header h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

header p {
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* NAV   Paramos aqui com o segundo ano */
nav {
    background: #08306b;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* HERO */
.hero {
    background: linear-gradient(to right, rgba(13, 71, 161, 0.88), rgba(25, 118, 210, 0.82)),
        url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.hero h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 25px;
}

.hero .btn {
    display: inline-block;
    background: #ffca28;
    color: #0d47a1;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.hero .btn:hover {
    background: #ffd54f;
    transform: scale(1.05);
}

/* SECTIONS */
section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0d47a1;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #42a5f5;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* SOBRE / CURSOS / INFO CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
    color: #08306b;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card p{
    color: #4b5563;
}

.agenda{
    background: #eaf3ff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 6px 18px rgba(0, 0, 0,0.06);
}
.agenda ul{
    list-style: none;
}
.agenda ul li{
    background: white;
    margin-bottom: 14px;
    padding: 16px solid #1976d2;
    border-radius: 10px;
    box-shadow:0 4px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;

}

.contato-box{
    background: white;
    max-width: 800px;
    margin:0 auto;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contato-box p{
    margin-bottom: 12px;
    font-size: 1rem;
}

.contato-box strong{
    color:#08306b;
}

footer{
    background: #08306b;
    color:#f4f7fb;
    text-align: center;
    padding: 22px 15px;
    margin-top: 40px;
    font-size: 0.95rem;
}