/* ==========================================================
   TS IMPORTS - Coming Soon
   Desenvolvido por Contato Web Digital
========================================================== */

:root{

    --white:#F8F8F8;
    --gold:#C8A96A;
    --gold-light:#E8D5A4;
    --text:#202020;
    --gray:#666;
    --shadow:0 25px 60px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--white);

    font-family:'Montserrat',sans-serif;

    color:var(--text);

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}


/*======================================================
BACKGROUND
======================================================*/

.background{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,.95),
    rgba(248,248,248,1) 55%),

    linear-gradient(
    130deg,
    rgba(255,255,255,.85),
    rgba(245,245,245,.96));

    z-index:-5;

}


/* textura suave */

.background::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:.12;

    background-image:

    radial-gradient(#d9d9d9 .8px, transparent .8px);

    background-size:28px 28px;

}


/* brilho diagonal */

.background::after{

    content:"";

    position:absolute;

    top:-40%;

    left:-20%;

    width:70%;

    height:220%;

    background:linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.55),
    transparent);

    transform:rotate(10deg);

    animation:shine 12s linear infinite;

}


/*======================================================
DETALHES DOURADOS
======================================================*/

.gold-circle{

    position:fixed;

    width:350px;

    height:350px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(200,169,106,.20),
    rgba(200,169,106,0));

    filter:blur(30px);

    z-index:-2;

}

.one{

    top:-150px;

    right:-120px;

}

.two{

    bottom:-180px;

    left:-150px;

}


/*======================================================
CONTAINER
======================================================*/

.container{

    width:min(95%,820px);

    margin:auto;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:70px 25px;

}


/*======================================================
LOGO
======================================================*/

.logo{

    width:175px;

    height:175px;

    border:2px solid var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:100px;

    margin-bottom:40px;

    background:white;

    position:relative;

    overflow:hidden;

    box-shadow:var(--shadow);

}


.logo img{

    max-width:170px;

    transition:.4s;

}


.logo::before{

/*    content:"LOGO"; */

    position:absolute;

    color:var(--gold);

    letter-spacing:8px;

    font-size:15px;

    font-weight:600;

}


.logo::after{

    content:"";

    position:absolute;

    width:120%;

    height:35px;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.9),
    transparent);

    transform:rotate(-25deg);

    left:-140%;

    animation:logoShine 8s infinite;

}


/*======================================================
DIVIDER
======================================================*/

.divider{

    width:120px;

    height:2px;

    background:linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent);

    margin-bottom:35px;

}


/*======================================================
TEXTOS
======================================================*/

h3{

    color:var(--gold);

    letter-spacing:8px;

    font-size:14px;

    font-weight:500;

    margin-bottom:12px;

}

h1{

    font-family:'Cormorant Garamond',serif;

    font-size:68px;

    font-weight:600;

    margin-bottom:30px;

    line-height:1.1;

}

.subtitle{

    font-size:22px;

    max-width:700px;

    line-height:1.8;

    margin-bottom:20px;

}

.description{

    color:var(--gray);

    line-height:2;

    font-size:17px;

    max-width:650px;

    margin-bottom:55px;

}


/*======================================================
CONTATOS
======================================================*/

.contact-box{

    width:100%;

    max-width:620px;

    background:white;

    border:1px solid rgba(200,169,106,.30);

    border-radius:18px;

    padding:35px;

    box-shadow:var(--shadow);

}

.contact-box h4{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:var(--gold);

    margin-bottom:25px;

}

.contact-box a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    color:#333;

    text-decoration:none;

    margin:18px 0;

    transition:.3s;

    font-size:16px;

}

.contact-box a:hover{

    color:var(--gold);

    transform:translateY(-2px);

}

.contact-box svg{

    width:22px;

    height:22px;

    stroke:var(--gold);

    stroke-width:1.7;

    fill:none;

}


/*======================================================
RODAPÉ
======================================================*/

footer{

    margin-top:70px;

}

footer p{

    letter-spacing:5px;

    font-size:13px;

    color:#888;

}


/*======================================================
ANIMAÇÕES
======================================================*/

@keyframes shine{

0%{

transform:translateX(-30%) rotate(10deg);

}

100%{

transform:translateX(180%) rotate(10deg);

}

}


@keyframes logoShine{

0%{

left:-120%;

}

40%{

left:-120%;

}

70%{

left:140%;

}

100%{

left:140%;

}

}


/* Fade */

.container>*{

    opacity:0;

    transform:translateY(25px);

    animation:fade .9s forwards;

}

.container>*:nth-child(2){animation-delay:.2s;}
.container>*:nth-child(3){animation-delay:.4s;}
.container>*:nth-child(4){animation-delay:.6s;}
.container>*:nth-child(5){animation-delay:.8s;}
.container>*:nth-child(6){animation-delay:1s;}
.container>*:nth-child(7){animation-delay:1.2s;}

@keyframes fade{

to{

opacity:1;

transform:none;

}

}


/*======================================================
RESPONSIVO
======================================================*/

@media(max-width:768px){

.logo{

width:130px;
height:130px;

}

h1{

font-size:46px;

}

.subtitle{

font-size:18px;

}

.description{

font-size:15px;
line-height:1.8;

}

.contact-box{

padding:25px;

}

.contact-box a{

font-size:14px;
word-break:break-word;

}

}

@media(max-width:480px){

.container{

padding:50px 20px;

}

h1{

font-size:36px;

}

.subtitle{

font-size:16px;

}

.logo{

width:160px;
height:160px;

}

}