/*
Theme Name: Célula Homens de Ferro PRO V3
Author: Rodrigo Barbosa
Version: 3.1
*/

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#0a0a0a;
color:#fff;
}

/* HEADER */

header{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.85);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

.menu a{
color:#fff;
margin-left:25px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.menu a:hover{
color:#ff6a00;
}


/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.8)),
url('assets/hero.jpg') center/cover no-repeat;
position:relative;
overflow:hidden;
}

.hero-content{
max-width:900px;
margin-left:10%;
position:relative;
z-index:2;
}

.hero h1{
font-size:64px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
}


/* SPARKS */

#sparks{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:1;
}


/* BUTTON */

.button{
background:#ff6a00;
color:white;
padding:16px 30px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:20px;
font-weight:bold;
transition:all 0.3s ease;
box-shadow:0 0 10px rgba(255,106,0,0.6);
}

.button:hover{
box-shadow:0 0 25px rgba(255,106,0,1);
transform:scale(1.05);
}


/* SECTION */

.section{
max-width:1100px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:20px;
}


/* CARDS */

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.card{
background:#1a1a1a;
padding:30px;
border-radius:8px;
width:260px;
border-top:3px solid #ff6a00;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 10px 20px rgba(0,0,0,0.5);
}


/* CONTADOR */

.contador-box{
text-align:center;
margin:40px auto;
}

.contador-box{
text-align:center;
margin:40px auto;
max-width:600px;
}

#countdown{
font-size:30px;
font-weight:bold;
color:#fff;
margin-top:10px;
}


/* VERSICULO */

.versiculo-card{
background:#111;
border:1px solid #333;
padding:20px;
max-width:600px;
margin:40px auto;
border-radius:10px;
text-align:center;
}

.versiculo-card h3{
color:#ff7a00;
margin-bottom:10px;
}


/* FOOTER */

footer{
background:black;
text-align:center;
padding:30px;
border-top:1px solid #222;
}

.footer-igreja{
margin-top:20px;
}

.footer-igreja img{
max-width:45px;
display:block;
margin:8px auto;
filter:brightness(0) invert(1);
opacity:0.85;
}


/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.4);
z-index:999;
}


/* RESPONSIVO */

@media(max-width:900px){

.hero-content{
margin-left:20px;
margin-right:20px;
}

.hero h1{
font-size:42px;
}

.cards{
flex-direction:column;
align-items:center;
}

}

html{
scroll-behavior: smooth;
}