/* ======================================================
   GOTAS DO SOL
   STYLE.CSS
====================================================== */

:root{
    --gold:#f5b041;
    --gold2:#ffcc66;
    --dark:#0f1115;
    --white:#ffffff;
    --glass:rgba(15,17,21,.30);
    --shadow:0 25px 60px rgba(0,0,0,.45);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#111;
    color:#FFF;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* HERO */

.hero{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:url("../images/palco.jpg") center center no-repeat;
    background-size:cover;

}

/* VIDEO */

.hero-video{

    position:absolute;

    top:50%;
    left:50%;

    min-width:100%;
    min-height:100%;

    width:auto;
    height:auto;

    object-fit:cover;
    object-position:center center;

    transform:translate(-50%,-50%);

    filter:brightness(.92);

    z-index:0;

}

/* OVERLAY */

.overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.82)
    );

    z-index:1;

}

/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:5;

    width:min(920px,92%);

    padding:70px 60px;

    text-align:center;

    background:var(--glass);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    box-shadow:var(--shadow);

    animation:fadeUp 1.2s ease;

}

/* LOGO */

.logo{

    width:430px;

    max-width:88%;

    margin:auto auto 40px;

    filter:drop-shadow(0 0 30px rgba(245,176,65,.40));

    animation:floatLogo 6s ease-in-out infinite;

}

@keyframes floatLogo{

    0%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
    100%{transform:translateY(0);}

}

/* TEXTOS */

h1{

    font-size:3.8rem;
    font-weight:900;
    margin-bottom:10px;

}

h2{

    font-size:2rem;
    font-weight:300;
    color:var(--gold2);

    margin-bottom:28px;

}

.subtitle{

    font-size:1.35rem;
    margin-bottom:15px;

}

p{

    font-size:1.08rem;
    line-height:1.8;
    margin-bottom:12px;

}

/* BOTÕES */

.buttons{

    margin-top:45px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;

}

.btn{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    padding:17px 34px;

    border-radius:60px;

    font-weight:700;

    min-width:190px;

    transition:.35s;

}

.instagram{

    background:#E1306C;
    color:#FFF;

}

.whatsapp{

    background:#25D366;
    color:#FFF;

}

.big{

    background:var(--gold);
    color:#111;

}

.btn:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.40);

}

/* SEÇÕES */

section{

    padding:95px 35px;

}

.container{

    width:min(1100px,95%);
    margin:auto;
    text-align:center;

}

/* ABOUT */

.about{

    background:

    linear-gradient(

        rgba(0,0,0,.70),

        rgba(0,0,0,.70)

    ),

    url("../images/cosmic.jpg");

    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

}

.about h2{

    color:var(--gold2);

    margin-bottom:28px;

}

.about p{

    max-width:900px;
    margin:auto;

}

/* ======================================================
CTA
====================================================== */

.cta{

    background:

    linear-gradient(

        rgba(0,0,0,.68),

        rgba(0,0,0,.82)

    ),

    url("../images/inspira.jpg");

    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

}

.cta h2{

    color:var(--gold2);

    margin-bottom:25px;

}

.cta p{

    max-width:850px;

    margin:0 auto 35px;

}

/* ======================================================
FOOTER
====================================================== */

footer{

    background:

    linear-gradient(
        180deg,
        #0f1115 0%,
        #050505 100%
    );

    border-top:2px solid rgba(245,176,65,.20);

    padding:90px 30px;

    text-align:center;

}

footer::before{

    content:"";

    display:block;

    width:140px;

    height:2px;

    margin:0 auto 40px;

    background:

    linear-gradient(

        90deg,

        transparent,

        var(--gold),

        transparent

    );

}

.footer-logo{

    width:190px;

    margin:0 auto 30px;

    filter:

    drop-shadow(0 0 20px rgba(245,176,65,.40));

}

footer p{

    color:#DDD;

    line-height:1.8;

    margin:8px 0;

}

footer strong{

    color:var(--gold);

}

/* ======================================================
ANIMAÇÕES
====================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ======================================================
SCROLLBAR
====================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold2);

}

/* ======================================================
RESPONSIVO
====================================================== */

@media(max-width:992px){

.hero-content{

padding:45px;

}

.logo{

width:320px;

}

h1{

font-size:3rem;

}

h2{

font-size:1.7rem;

}

.about,
.cta{

background-attachment:scroll;

}

}

@media(max-width:768px){

.hero{

min-height:100vh;

height:auto;

padding:35px 0;

}

.hero-content{

padding:35px 25px;

}

.logo{

width:250px;

margin-bottom:25px;

}

h1{

font-size:2.3rem;

}

h2{

font-size:1.35rem;

}

.subtitle{

font-size:1.1rem;

}

p{

font-size:.98rem;

}

.buttons{

flex-direction:column;

align-items:center;

}

.btn{

width:100%;

max-width:340px;

}

section{

padding:70px 25px;

}

.footer-logo{

width:150px;

}

}

@media(max-width:480px){

.hero-content{

padding:25px 20px;

}

.logo{

width:210px;

}

h1{

font-size:1.8rem;

}

h2{

font-size:1.15rem;

}

.subtitle{

font-size:1rem;

}

p{

font-size:.92rem;

}

footer{

padding:60px 20px;

}

}

/* ======================================================
EFEITOS
====================================================== */

.btn{

transition:

transform .35s ease,

box-shadow .35s ease,

opacity .35s ease;

}

.logo{

transition:transform .5s ease;

}

.logo:hover{

transform:scale(1.03);

}

.hero-video{

transition:transform 12s ease;

}

.hero:hover .hero-video{

transform:

translate(-50%,-50%)

scale(1.05);

}

/* ======================================================
FIM
====================================================== */