body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#02030a;
color:white;
overflow-x:hidden;
}

/* HEADER */

header{
background:#0b0f1f;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:50px;
width:auto;
display:block;
object-fit:contain;
}

nav a{
color:#00eaff;
margin:0 12px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:white;
}

/* SECTION */

.section{
max-width:1200px;
margin:auto;
padding:40px 20px;
position:relative;
z-index:2;
}

/* HERO */

.hero-home{
height:70vh;
background:url('/assets/img/space-bg.jpg') center/cover no-repeat;
display:flex;
align-items:center;
padding-left:80px;
position:relative;
z-index:1;
}

.hero-content{
max-width:600px;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.hero-button{
background:#00eaff;
padding:14px 30px;
border-radius:6px;
color:#000;
text-decoration:none;
font-weight:bold;
}

/* NEWS */

.news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-top:20px;
}

.news-card{
background:#10163a;
padding:20px;
border-radius:10px;
}

.news-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
}

.news-card h3{
margin-bottom:10px;
}

/* MAP */

#map{
height:540px;
border-radius:12px;
}

/* VIDEOS */

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
gap:30px;
}

.video-card{
background:#0f1635;
border-radius:12px;
overflow:hidden;
transition:transform .3s ease, box-shadow .3s ease;
}

.video-card:hover{
transform:scale(1.05);
box-shadow:0 0 25px rgba(0,234,255,0.4);
}

.video-thumb{
position:relative;
width:100%;
padding-top:56.25%;
}

.video-thumb iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:0;
}

/* HERO LOGO */

.hero-logo{
max-width:300px;
width:100%;
height:auto;
display:block;
margin:auto;
}

/* HEADER MODERNO */

.main-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
background:#070b1c;
border-bottom:1px solid #111;
}

.menu a{
color:#00eaff;
text-decoration:none;
margin-left:25px;
font-weight:600;
font-size:15px;
transition:0.3s;
}

.menu a:hover{
color:white;
}

/* FORMULARIO AVISTAMENTO */

.report-container{
max-width:700px;
margin:80px auto;
background:#0b1b3a;
padding:40px;
border-radius:10px;
box-shadow:0 0 20px rgba(0,255,255,0.2);
}

.report-container h1{
text-align:center;
margin-bottom:30px;
color:#00eaff;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-bottom:20px;
}

.report-container input,
.report-container textarea{
width:100%;
padding:12px;
border:none;
border-radius:6px;
background:#101d3a;
color:white;
}

.report-container textarea{
height:120px;
}

.report-container button{
width:100%;
padding:14px;
border:none;
border-radius:6px;
background:#00eaff;
color:black;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.report-container button:hover{
background:#00c3cc;
}

header{
background:#0b0f1f;
padding:15px 30px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:50px;
width:auto;
}

/* TICKER */

.ticker{
    display:flex;
    align-items:center;
    width:100%;
    background:#03081a;
    border-top:1px solid #111;
    border-bottom:1px solid #111;
    overflow:hidden;
    height:48px;
}

.ticker-title{
    background:#00eaff;
    color:#000;
    font-weight:bold;
    padding:0 20px;
    white-space:nowrap;
    height:48px;
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.ticker-wrapper{
    overflow:hidden;
    flex:1;
    white-space:nowrap;
    position:relative;
}

.ticker-move{
    display:inline-block;
    white-space:nowrap;
    padding-left:100%;
    animation:tickerMove 220s linear infinite;
}

.ticker-move:hover{
    animation-play-state:paused;
}

@keyframes tickerMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* ADMIN PANEL */

.admin-container{

max-width:900px;
margin:80px auto;
background:#0c1535;
padding:40px;
border-radius:10px;
box-shadow:0 0 25px rgba(0,255,255,0.15);
}

.admin-container h1{

text-align:center;
margin-bottom:30px;
color:#00eaff;
}

.admin-container label{

display:block;
margin-top:20px;
margin-bottom:6px;
font-weight:bold;
}

.admin-container input,
.admin-container select,
.admin-container textarea{

width:100%;
padding:12px;
border:none;
border-radius:6px;
background:#101d3a;
color:white;
}

.admin-container textarea{

min-height:200px;
}

.admin-container button{

margin-top:25px;
padding:14px;
width:100%;
background:#00eaff;
border:none;
border-radius:6px;
font-weight:bold;
cursor:pointer;
}

.admin-container button:hover{

background:#00c3cc;
}

.news-card a{
color:#00eaff;
text-decoration:none;
font-weight:bold;
}

.news-card a:hover{
color:white;
}

/* TICKER */

.ticker{
    display:flex;
    align-items:center;
    width:100%;
    background:#03081a;
    border-top:1px solid #111;
    border-bottom:1px solid #111;
    overflow:hidden;
    height:48px;
}

.ticker-title{
    background:#00eaff;
    color:#000;
    font-weight:bold;
    padding:0 20px;
    white-space:nowrap;
    height:48px;
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.ticker-content{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
    color:#fff;
    line-height:48px;
    padding:0 10px;
}

@keyframes tickerMove{
0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}

.news-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

img{
max-width:100%;
height:auto;
}

.ticker-content{
overflow:hidden;
white-space:nowrap;
font-size:14px;
}

.ticker{
background:#070b1c;
padding:8px 0;
border-top:1px solid #111;
border-bottom:1px solid #111;
}

.ticker-content{
overflow:hidden;
white-space:nowrap;
}

.ticker-scroll{
display:inline-block;
white-space:nowrap;
animation: tickerMove 40s linear infinite;
}

@keyframes tickerMove{
0%{ transform: translateX(100%); }
100%{ transform: translateX(-100%); }
}

.videos-section {
    padding: 30px 20px;
}

.section-header {
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #fff;
}

.section-header p {
    color: #b8c7e0;
    font-size: 16px;
    margin: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: #0d1640;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 255, 255, 0.12);
}

.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    display: block;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    font-size: 32px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.video-info {
    padding: 18px;
}

.video-info h3 {
    color: #fff;
    font-size: 21px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.watch-btn {
    background: #00e5ff;
    color: #000;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.watch-btn:hover {
    background: #00c8df;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    width: 100%;
    max-width: 1000px;
    background: #081126;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.video-modal-content h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 24px;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.video-frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-frame-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 30px;
    }

    .video-info h3 {
        font-size: 18px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}