/*==================================================
FICTION PLAY
style.css - Parte 1
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#05070d;
    color:#ffffff;
    overflow-x:hidden;

}

/*=============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1020;
}

::-webkit-scrollbar-thumb{
    background:#00d4ff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#12f7ff;
}

/*=============================
LINKS
==============================*/

a{
    text-decoration:none;
    color:white;
}

img{
    max-width:100%;
}

/*=============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:85px;

    background:rgba(5,8,18,.95);

    backdrop-filter:blur(18px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    z-index:999;

    border-bottom:1px solid rgba(0,212,255,.25);

}

/*=============================
LOGO
==============================*/

.logo{

    width:240px;

    display:flex;

    align-items:center;

}

.logo img{

    width:220px;

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.05);

}

/*=============================
GOOGLE SEARCH
==============================*/

.google-search{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.google-search form{

    display:flex;

    width:100%;

    max-width:620px;

}

.google-search input{

    width:100%;

    height:48px;

    border:none;

    outline:none;

    border-radius:30px 0 0 30px;

    padding-left:22px;

    font-size:15px;

    background:#ffffff;

    color:#111;

}

.google-search button{

    width:140px;

    border:none;

    cursor:pointer;

    border-radius:0 30px 30px 0;

    background:linear-gradient(90deg,#00d4ff,#008cff);

    color:white;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.google-search button:hover{

    background:linear-gradient(90deg,#00ffd5,#00b4ff);

}

/*=============================
MENU
==============================*/

.menu{

    position:relative;

    margin-left:25px;

}

.dropbtn{

    background:linear-gradient(90deg,#00c6ff,#0072ff);

    color:white;

    border:none;

    padding:14px 26px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.4s;

}

.dropbtn:hover{

    transform:translateY(-2px);

    box-shadow:0 0 20px rgba(0,212,255,.45);

}

.dropdown-content{

    position:absolute;

    right:0;

    top:60px;

    min-width:220px;

    display:none;

    background:#0b1222;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.45);

}

.dropdown-content a{

    display:block;

    padding:16px 20px;

    color:#fff;

    transition:.35s;

}

.dropdown-content a:hover{

    background:#00b4ff;

}

.menu:hover .dropdown-content{

    display:block;

}

/*=============================
HERO
==============================*/

.hero{

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:160px 30px 100px;

    background:
    linear-gradient(rgba(5,8,18,.78),rgba(5,8,18,.88)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;

    background-position:center;

}

.hero-text{

    max-width:900px;

}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    color:#fff;

    text-shadow:0 0 25px rgba(0,212,255,.35);

}

.hero p{

    font-size:22px;

    color:#d8d8d8;

    margin-bottom:45px;

    line-height:1.8;

}

.botao{

    display:inline-block;

    padding:18px 48px;

    border-radius:40px;

    background:linear-gradient(90deg,#00d4ff,#0078ff);

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.botao:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(0,212,255,.55);

}

/*=============================
SEÇÃO IA
==============================*/

.ia{

    padding:100px 8%;

    background:#0a1020;

}

.ia h2{

    text-align:center;

    font-size:42px;

    margin-bottom:25px;

}

.ia>p{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#cccccc;

    line-height:1.9;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#121b31;

    border:1px solid rgba(0,212,255,.15);

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#00d4ff;

    box-shadow:0 15px 35px rgba(0,212,255,.18);

}

.card h3{

    color:#00d4ff;

    margin-bottom:18px;

    font-size:24px;

}

.card p{

    color:#d7d7d7;

    line-height:1.8;

}

/* Continua na Parte 2 (Mídia, Vídeo, Footer e Responsividade) */
/*==================================================
STYLE.CSS - PARTE 2
Fiction Play
==================================================*/

/*=========================
MÍDIA
=========================*/

.midia{

    padding:100px 8%;
    background:#05070d;

}

.titulo-section{

    text-align:center;
    margin-bottom:70px;

}

.titulo-section h2{

    font-size:42px;
    color:#00d7ff;
    margin-bottom:20px;

}

.titulo-section p{

    color:#cfcfcf;
    max-width:900px;
    margin:auto;
    line-height:1.9;

}

.midia-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.texto h3{

    font-size:34px;
    margin-bottom:25px;
    color:#00d7ff;

}

.texto p{

    line-height:1.9;
    color:#dddddd;
    margin-bottom:30px;

}

.texto ul{

    list-style:none;

}

.texto li{

    margin-bottom:16px;
    color:#ffffff;
    font-size:17px;

}

/*=========================
VÍDEO
=========================*/

.video{

    width:100%;

}

.video iframe{

    width:100%;
    aspect-ratio:16/9;

    border:none;

    border-radius:20px;

    box-shadow:0 0 35px rgba(0,212,255,.25);

}

/*=========================
CONTATO
=========================*/

.contato{

    padding:100px 8%;

    text-align:center;

    background:#091221;

}

.contato h2{

    font-size:42px;
    color:#00d4ff;
    margin-bottom:25px;

}

.contato p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    color:#d8d8d8;

    margin-bottom:40px;

}

/*=========================
FOOTER
=========================*/

footer{

    background:#04060b;

    padding:60px 8% 25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:45px;

}

.footer-container h3{

    color:#00d4ff;

    margin-bottom:20px;

}

.footer-container p{

    color:#cccccc;

    line-height:1.8;

}

.footer-container a{

    display:inline-block;

    color:#d8d8d8;

    margin-bottom:10px;

    transition:.3s;

}

.footer-container a:hover{

    color:#00d4ff;

    transform:translateX(5px);

}

.copyright{

    margin-top:45px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;

    text-align:center;

    color:#8d8d8d;

    font-size:14px;

}

/*=========================
ANIMAÇÕES
=========================*/

.card,
.botao,
.dropbtn,
.logo img,
iframe{

    transition:.35s;

}

@keyframes aparecer{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero-text{

    animation:aparecer 1.3s ease;

}

.card{

    animation:aparecer .9s ease;

}

/*=========================
RESPONSIVO
=========================*/

@media(max-width:1100px){

header{

    flex-wrap:wrap;

    height:auto;

    padding:20px;

}

.logo{

    width:100%;
    justify-content:center;
    margin-bottom:15px;

}

.google-search{

    width:100%;
    margin-bottom:15px;

}

.menu{

    width:100%;
    display:flex;
    justify-content:center;
    margin-left:0;

}

.hero{

    padding-top:220px;

}

.hero h1{

    font-size:48px;

}

.hero p{

    font-size:20px;

}

.midia-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero h1{

    font-size:36px;

}

.hero p{

    font-size:18px;

}

.ia h2,
.contato h2,
.titulo-section h2{

    font-size:32px;

}

.card{

    padding:28px;

}

.google-search form{

    flex-direction:column;
    gap:10px;

}

.google-search input{

    border-radius:30px;

}

.google-search button{

    width:100%;
    border-radius:30px;
    height:48px;

}

.footer-container{

    text-align:center;

}

}

@media(max-width:480px){

header{

    padding:15px;

}

.logo img{

    width:180px;

}

.hero{

    padding:180px 20px 80px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

.botao{

    width:100%;
    text-align:center;

}

.card h3{

    font-size:20px;

}

.texto h3{

    font-size:28px;

}

}

/*=========================
FIM DO ARQUIVO
=========================*/