/* estilo geral */


:root{
    --gold: #C9A227;         
    --gold-light: #E4C578;   
    --gold-dark: #9C7A1E;   
    --preto: #1A1A1A;      
    --branco: #FFFFFF;       
    --cinza-claro: #F5F3EF;  
}

body{
    background-color: var(--branco);
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--preto);
}

nav{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.menu{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    width: 100%;

}

.menu li a{
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.menu li a{
    color: var(--preto);
}

.menu li a:hover{
    color: var(--gold-dark);
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.flex{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* navbar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--branco);
    padding: 15px 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gold-light);
}

.logo img{
    width: 70px;
    transform: rotate(90deg);
   
}

.navbar ul li a{
    text-decoration: none;
    flex-direction: row-reverse;
}

/* estilo inicio */

#Inicio{
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--cinza-claro);
}

.Inicio h1{
    font-size: 40px;
    text-align: center;
    margin-top: 20px;
    color: var(--preto);
}

.Inicio h1 span{
    color: var(--gold-dark);
}

.Inicio p{
    color: #555;
    max-width: 500px;
    margin-top: 20px;
    font-weight: 300;
}

/* estilo sobre */

#Sobre{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--branco);
}

.texto-sobre{
    flex: 1;
    text-align: left;
}

.texto-sobre h1{
    font-size: 30px;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 10px;
    color: var(--preto);
}

.texto-sobre p{
    color: #555;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.6;
    font-size: 22px;
}

/* estilo projetos */

#Projetos{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--cinza-claro);
}

.Projetos h1{
    font-size: 40px;
    text-align: center;
    color: var(--preto);
}

.Projetos h1 span{
    color: var(--gold-dark);
}

.Projetos{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Projetos .flex{
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* card de cada servico/projeto */
.projetos-empresa{
    background: var(--branco);
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    padding: 35px 35px;
    width: 280px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.projetos-empresa:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, .25);
    border-color: var(--gold);
}

.projetos-empresa h3{
    color: var(--gold-dark);
    font-size: 20px;
    margin-bottom: 10px;
}

.projetos-empresa p{
    color: #555;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

/*estilo contato*/


.Contato{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--preto);
}

.Contato h1{
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--branco);
}

.Contato h1 span{
    color: var(--gold-light);
    
}

.Contato p{
    color: #ccc;
    margin: 0 0 20px;
    
   
}

.Contato .flex{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.btn-contato-destaque {
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 30px; 
    transition: 0.3s; 
   
}



.btn-social{
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 40px;
    font-size: 18px;
    font-weight:600;
    border: 0;
    cursor: pointer;
    transition: .2s;
    gap:40px;

    
}

.btn-social button{
    width: 60px;       
    height: 60px;
    border-radius: 50%; 
    background-color: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
    box-shadow: .3s ease;
    overflow: hidden;
}

.btn-social button i{
    font-size: 24px;
    color: var(--branco);
    font-weight: 600;
    transition: .3s;
    transform: rotate(15deg);
}

.btn-social button:hover{
    box-shadow: 0px 0px 18px var(--gold), 0 0 30px var(--gold-light);
    transform: scale(1.0);
    background-color: var(--gold-light);
}




/* estilo ronaldo! */

footer{
    padding: 60px 4%;
    background-color: var(--preto);
}

footer .line-footer{
    padding: 20px 0;

}

footer .line-footer a{
    text-decoration: none;
}

.borda{
    border-top: 2px solid var(--gold-dark);

}

footer .line-footer p i{
    color: var(--gold-light);
    font-size: 22px;
}

footer .line-footer p a{
    color: var(--branco);
}

/* estilo hero */

.hero p.subtitle{
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-size: 15px;
    margin-bottom: 4px;
    padding-left: 40px;
   
}

.hero h1{
    font-family:'Playfair Display', Gerogia, serif;
    font-size: 56px;
    line-height: 1.3;
    color: var(--preto);
    max-width: 800px;
}

.hero p.desc{
    max-width: 600px;
    margin: 20px auto 36px auto;
    color: #555;
    font-size: 18px;
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--gold);
    color: var(--branco);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
    transition: .3s;
}

.btn:hover{
    background-color: var(--gold-dark);
}

/* divisor */

.divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 50px 0;
    background-color: var(--branco);
}

.divider .line{
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.divider .diamond{
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    transform: rotate(45deg);
}


@media (max-width: 768px) {


    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        overflow-x: hidden;
    }

    .interface {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }


    
    .navbar {
        width: 100%;
        padding: 10px 20px;
        min-height: 70px;
        gap: 10px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 55px;
        height: auto;
    }

    nav {
        flex-grow: 1;
        justify-content: center;
    }

    .menu {
        gap: 5px;
        justify-content: center;
    }

    .menu li a {
        padding: 8px 6px;
        font-size: 13px;
    }

    .btn-contato-destaque {
        padding: 8px 10px;
        margin-left: 0;
        font-size: 13px;
        white-space: nowrap;
    }



    #Inicio {
        min-height: 100vh;
        padding: 100px 20px 50px;
    }

    .hero {
        width: 100%;
    }

    .hero p.subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin: 15px 0;
    }

    .hero p.desc {
        width: 100%;
        max-width: 500px;
        font-size: 16px;
        line-height: 1.6;
        margin: 20px auto 30px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }


   

    .divider {
        padding: 30px 0;
        gap: 8px;
    }

    .divider .line {
        width: 40px;
    }


   

    #Sobre {
        min-height: auto;
        padding: 80px 0;
    }

    .texto-sobre {
        width: 100%;
        text-align: center;
    }

    .texto-sobre h1 {
        font-size: 25px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .texto-sobre p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.6;
        text-align: center;
    }


  

    #Projetos,
    .Projetos {
        min-height: auto;
        padding: 80px 0;
    }

    .Projetos h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .Projetos .flex {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        width: 100%;
    }

    .projetos-empresa {
        width: 100%;
        max-width: 400px;
        padding: 25px 20px;
    }

    .projetos-empresa h3 {
        font-size: 19px;
    }

    .projetos-empresa p {
        font-size: 15px;
    }


   

    .Contato {
        min-height: 100vh;
        padding: 80px 20px;
    }

    .Contato h1 {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    .Contato p {
        max-width: 450px;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }

    .btn-social {
        gap: 25px;
        padding: 10px 0;
    }

    .btn-social button {
        width: 55px;
        height: 55px;
    }


   
    footer {
        padding: 40px 20px;
    }

    footer .line-footer {
        padding: 20px 0;
        text-align: center;
    }

    footer .line-footer p {
        font-size: 13px;
        line-height: 1.6;
        word-break: break-word;
    }

    footer .line-footer p i {
        font-size: 18px;
    }

}


@media (max-width: 480px) {

    .navbar {
        padding: 10px 12px;
    }

    .logo img {
        width: 48px;
    }

    .menu {
        gap: 0;
    }

    .menu li a {
        padding: 7px 4px;
        font-size: 11px;
    }

    .btn-contato-destaque {
        font-size: 11px;
        padding: 7px 6px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p.subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .hero p.desc {
        font-size: 15px;
    }

    .texto-sobre h1 {
        font-size: 23px;
    }

    .texto-sobre p {
        font-size: 16px;
    }

    .Projetos h1 {
        font-size: 28px;
    }

    .Contato h1 {
        font-size: 28px;
    }

    footer .line-footer p {
        font-size: 12px;
    }
}








