/* Reset básico */
@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Regular.woff2') format('woff2'),
         url('fonts/Sora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Bold.woff2') format('woff2'),
         url('fonts/Sora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora','Arial', sans-serif;
    background: linear-gradient(135deg, #193f90, #224e9c, #3063ad);
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Topo */
header {
    background: #002877;
    padding: 55px 0px 55px 0px;
	text-align: center;
}
.logo svg {
    max-width: 400px; 
    height: 150px;
}


/* Conteúdo principal */
main {
    flex: 1;
    padding: 55px 0px 55px 0px;
}
main h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #ffffff;
}
main p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

/* Links para vídeos */
.video-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.video-links a {
    background: #29a2dc;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.video-links a:hover {
    background: #fff;
	color: #002877;
}

/* Links sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-links a {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-site {
    background: #4caf50;
    color: #ffffff;
}
.btn-site:hover {
    background: #388e3c;
}
.btn-instagram {
    background: #e1306c;
    color: #ffffff;
}
.btn-instagram:hover {
    background: #ad1457;
}

/* Rodapé */
footer {
    background: #002877;
    padding: 15px;
    font-size: 0.9em;
}
