@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --deep: #020024;
    --navy: #1F1032;
    --purple: #2E1A47;
    --bright-purple: #6C3BFF;
    --gold: #D4AF37;
    --muted: #9490b8;
    --cream: #f5eed8;
}

h1, h2, h3, h4, h5{
    font-family: "Playfair Display", serif !important;
}

p, ol li, ul li, a{
    font-family: "Poppins", sans-serif !important;
}

a{
    text-decoration: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{ 
    scroll-behavior: smooth; 
}

body{
    background-color: var(--deep);
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reveal{
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible{
    opacity: 1;
    transform: translateY(0);
}

/* --- Secoes --- */

section{
    min-height: 100vh;
}

h2{
    font-size: 5rem;
    color: var(--gold);
}

/* --- NavBar --- */

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 15px;
    z-index: 1;
}

nav::before{
    content: '';
    position: absolute;
    inset: 0; /* faz ocupar toda a navbar */
    background-color: var(--deep);
    opacity: 1;
    z-index: -1;
}

nav ul li{
    list-style: none;
    color: white;
    font-size: 0.8rem;
}

nav ul{
    display: flex;
    flex-direction: row;
    cursor: pointer;
    gap: 5rem;
}

nav h5{
    font-size: 2rem;
    color: var(--gold);
}

nav ul li a{
    color: var(--cream);
}

nav ul li a:hover, footer ul li a:hover{
    color: var(--gold);
}

/* --- Span --- */
.citacao, .citacao-flutuante{
    background-color: var(--purple);
    color: var(--gold);
    border-radius: 30px;
    letter-spacing: 0.09rem;
    padding: 0.8rem;
    margin: 2rem;
    font-size: 0.9rem;
}

.citacao-flutuante{
    letter-spacing: 0.2rem;
    padding: 0.5rem 1.2rem;
}

.citacao::before, .citacao-info::before{
    content: '✦';
    padding-right: 0.5rem;
}

.cf-top-right, .cf-top, .cf-bottom-left{
    position: absolute;
}

.cf-top-right{
    bottom: 0;
    right: 0;
}

.cf-top{
    top: 0;
}

.cf-bottom-left{
    bottom: 10;
    left: 50;
}

.citacao-info{
    letter-spacing: 0.09rem;
    padding: 0.8rem;
    font-size: 0.8rem;
    color: var(--gold);
}

/* --- Botoes --- */
.btn{
    font-size: 0.7rem;
    padding: 1rem 1.7rem;
    border-radius: 35px;
    border: 0;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.6s ease;
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.25);
}

.btn:hover{
    transform: scale(1.1);
}

.btn-principal{
    background-color: var(--gold);
    color: var(--deep);
}

.btn-default{
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/*HOME*/
.home{
background:
  radial-gradient(ellipse 90% 80% at 25% 45%,
    rgba(108,59,255,0.45) 0%, rgba(108,59,255,0.12) 45%,
    rgba(108,59,255,0.03) 68%, transparent 85%),
  radial-gradient(ellipse 80% 75% at 88% 80%,
    rgba(108,59,255,0.38) 0%, rgba(108,59,255,0.10) 45%,
    rgba(108,59,255,0.02) 68%, transparent 85%),
  #020024;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1{
    color: var(--gold);
    font-size: 12rem;
    line-height: 55%;
    font-weight: bold;
    margin-bottom: 1rem;
}

.botoes{
    display: flex;
    gap: 2rem;
}

.home .btn-default{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 1rem;
    gap: 1rem;
}

.home .btn-default::after{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
    background-image: url(./assets/IconArrowRight.svg);
}

/*SOBRE*/
.section-sobre {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-sobre::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1F1032;
    clip-path: polygon(0 71%, 100% 37%, 100% 100%, 0% 100%);
    z-index: 0;
}

.sobre {
    width: 1200px;
    margin: 0 auto;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 15rem;
}

.sobre p{
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    text-align: justify;
    color: var(--cream);
    opacity: 0.85;
}

.sobre .aurora{
    font-size: 1.3rem;
    color: var(--gold);
}

.sobre .citacao-info{
    position: absolute;
    top: 0;
}

.sobre-logo h1{
    letter-spacing: 0.1rem;
    font-weight: 600;
}

.titulo-aurora{
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
    margin-left: 2rem;
}

/*PORTFOLIO*/
.portfolio{
    width: 1150px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-titulo{
    display: flex;
    justify-content: center;
}

.portfolio h1{
    margin: 4rem;
    font-size: 7rem;
    font-weight: 700;
}

.portfolio-grid{
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 1.5rem;
    column-gap: 4rem;
    align-items: flex-start;
}

.portfolio-grid img{
    transition: transform 0.6s ease;
}

.portfolio-grid img:hover{
    transform: scale(1.05);
}

.gd-a{
    grid-column: 1;
    grid-row: 1;
}

.gd-b{
    grid-column: 1;
    grid-row: 2;
}

.gd-c{
    grid-column: 2;
    grid-row: 1/3;
}

.portfolio-grid img {
    width: rem;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.btn-portfolio{
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 100px;
    width: fit-content;
    padding: 2.5rem 2.5rem;
    font-size: 4rem;
    font-weight: 600;
    color: var(--deep);
    cursor: pointer;
    position: absolute;
    right: -50px;
    bottom: 30px;

    transition: transform 0.6s ease;
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.507);
}

.btn-portfolio::before{
    content: 'Clique aqui para ver o';
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--purple);
    display: flex;
    justify-content: center;
}

.btn-portfolio:hover, .cta-WhatsApp:hover{
    transform: scale(1.05);
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.507);
}


/*SERVIÇOS*/
.section-servicos{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-servicos::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1F1032;
    clip-path: polygon(0 0%, 100% 0%, 100% 29%, 0% 63%);
    z-index: 0;
}

.servicos{
    width: 1200px;
    margin: 0 auto;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 15rem;
}

.cards{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.card{
    background-color: var(--navy);
    width: 30rem;
    height: 15rem;
    border: 1px solid var(--purple);
    border-radius: 15px;
    padding: 1.5rem;
    transition:  0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.card:hover{
    transform: scale(1.04);
    outline: 2px solid var(--deep);
}

.card-img{
    width: 32px;
    height: 32px;
    margin-bottom: 2rem;
}

.card h3{
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.card p{
    font-size: 0.9rem;
    color: var(--cream);
    color: var(--muted);
}

/*CONTATO*/
.contato{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.citacoes{
    height: 2rem;
}

.contato h1{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 7rem;
    font-weight: 700;
    font-style: italic;
    line-height: normal;
}

.contato .cta-WhatsApp{
    background-color: var(--gold);
    padding: 1.5rem 2.5rem;
    border: 0;
    border-radius: 55px;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    transition: transform 0.6s ease;
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.contato img{
    width: 4rem;
    color: var(--deep);
}

.contato a{
    color: var(--muted);
    text-decoration: none;
    padding: 2rem;
}

.contato a:hover{
    color: var(--gold);
}

.contato-mensagem{
    margin: 7rem;
}

.contato-cta{
    color: var(--cream);
}

/*FOOTER*/
footer{
    background-color: #2E1A47;
    width: 100%;
    height: 17rem;
    position: relative;
    box-shadow: inset -4px 4px 7.2px rgba(0, 0, 0, 0.25);
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-conteudo{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 1rem;
}

.footer-sobre{
    display: flex;
    flex-direction: column;
}

footer h4{
    color: var(--gold);
    font-size: 1.5rem;
}

footer h5{
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

footer p{
    color: var(--muted);
    margin: 0.5rem;
    margin-left: 0;
}

footer ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.2rem;
}

footer ul li a, footer ul li{
    color: var(--muted);
    text-decoration: none;
}

footer .footer-home{
    display: flex;
    width: 50%;
    border: 2px solid var(--deep);
    background-color: transparent;
    color: var(--deep);
    font-size: 1rem;
    padding: 1rem 2rem;
    margin: 1.5rem 1rem;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
    cursor: pointer;
}

footer .footer-home:before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
    background-image: url(./assets/IconArrowUp.svg);
}

footer .footer-home:hover{
    box-shadow: -4px 4px 7.2px rgba(0, 0, 0, 0.096);
}

.footer-links{
    display: flex;
    margin: 0.5rem;
    margin-bottom: 1rem;
    gap: 1.2rem;
}

footer img{
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 1px solid var(--gold);
    border-radius: 50%;
    padding: 0.2rem;
}

.direitos-autorais{
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: center;
    opacity: 70%;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    box-shadow: inset -4px 4px 7.2px rgba(0, 0, 0, 0.25);
}

footer span{
    font-family: "Poppins", sans-serif !important;
    color: var(--cream);
    font-size: 0.8rem;
}