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

html,
body {
    height: 100%;
  font-family: 'Poppins', sans-serif;
    background-color: #efeaec;
}


p {
color: #000000;
}

.hero{
    width:90%;
    max-width:1400px;

    margin:180px auto 0;

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

    gap:60px;
}

.hero h1 {
    font-size: 6.6rem;
    line-height: 1.05;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
}
.hero h1 span {
    color: #B08D57; 
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:6.2rem;
    line-height:1.1;
    color:#111;
    margin-bottom:30px;

}

.hero-text h1 span{
    color:#B08D57;
}

.hero-text p{
    font-size:1.5rem;
    color:#555;
    max-width:600px;
    line-height:1.6;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.hero-image img{
    width:100%;
    max-width:620px;
    margin-top:100px;
    
}

.sec1 {
    min-height: 100vh;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;

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

    background: #B08D57;
    backdrop-filter: blur(8px);

    
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

    z-index: 1000;
}

.header-logo img {
    width: 200px;   
    height: auto;
}


.top {
    width: 97%;
    max-width: 1600px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;         

    list-style: none;
    margin: 0;
    padding: 10px 20px; 

    border: 2px solid #000;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
}
.menu a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    padding: 6px 8px;
    transition: .3s;
}

.menu a:hover {
    color: #8b6b4b;
}


.services{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    margin-top:100px;
    padding:80px;
    background:#f1eff0;
    border: 2px solid #B08D57;
    border-radius: 12px;
    animation: brilho 2s infinite alternate;
}

@keyframes brilho {
    from {
        box-shadow:
            0 0 5px #B08D57,
            0 0 10px #B08D57;
    }

    to {
        box-shadow:
            0 0 15px #B08D57,
            0 0 30px #B08D57,
            0 0 45px #B08D57;
    }
}


.services-title{
    text-align:center;
    margin-bottom:70px;
}

.services-title h2{
    font-size:3.5rem;
    color:#111;
    margin-bottom:20px;
}

.services-title p{
    max-width:700px;
    margin:auto;
    font-size:1.2rem;
    color:#0e0d0d;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.service-card{
    background:#f3f0f1;
    padding:40px 35px;
    border-radius:18px;
    text-align:center;

   box-shadow:
    0 0 8px rgba(212, 175, 55, 0.5),
    0 0 16px rgba(212, 175, 55, 0.35);

    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 35px #B08D57;
}

.icon{
    width:80px;
    height:80px;

    margin:0 auto 25px;

    background:#B08D57;
    color:#fff;

    border-radius:50%;

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

    font-size:2rem;
}

.service-card h3{
    font-size:1.8rem;
    margin-bottom:15px;
    color:#111;
}

.service-card p{
    color:#000000;
    line-height:1.7;
    font-size:1.05rem;
}

.sobre {
display: flex; 
align-items: center; 
margin-left: 150px;
height: 150vh;
font-size: 3rem;
  opacity: 0;
    transform: translateY(50px);
    transition: all 3s ease;

}

.sobre.show {
    opacity: 1;
    transform: translateY(0);
}

/* CONTATO */
.sec3{
    padding:120px 10%;
    background:#0F2742;
    color:#fff;
}

.contato-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contato-tag{
    display:inline-block;
    background:rgba(176,141,87,.15);
    color:#D4AF37;
    padding:8px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.contato-info h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.contato-info p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:35px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.info-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#B08D57;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.info-item h4{
    margin-bottom:4px;
    font-size:18px;
}

.info-item p{
    margin:0;
    color:#cbd5e1;
}


.contato-form{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #e2e8f0;
    border-radius:14px;
    font-size:16px;
    font-family:'Poppins', sans-serif;
    outline:none;
    transition:.3s;
    color:#333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#B08D57;
    box-shadow:0 0 0 4px rgba(176,141,87,.15);
}

.btn-enviar{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#B08D57;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-enviar:hover{
    background:#9a7845;
    transform:translateY(-2px);
}

/* Responsivo */
@media (max-width: 992px){

    header{
        height:110px;
    }

    .top{
        width:95%;
    }

    .header-logo img{
        width:180px;
    }

    .menu{
        gap:18px;
        padding:10px 18px;
    }

    .menu a{
        font-size:1rem;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        margin-top:140px;
    }

    .hero-text{
        order:2;
    }

    .hero-image{
        order:1;
        justify-content:center;
    }

    .hero-image img{
        max-width:420px;
    }

    .hero h1,
    .hero-text h1{
        font-size:3.5rem;
    }

    .hero-text p{
        font-size:1.2rem;
        margin:auto;
    }

    .services{
        width:95%;
        padding:50px 30px;
    }

    .services-title h2{
        font-size:2.5rem;
    }

    .contato-container{
        grid-template-columns:1fr;
    }

}
@media (max-width:768px){

    header{
        height:auto;
        padding:15px 0;
    }

    .top{
        flex-direction:column;
        gap:20px;
    }

    .header-logo img{
        width:170px;
    }

    .menu{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
        padding:15px;
    }

    .hero{
        margin-top:180px;
        gap:40px;
    }

    .hero h1,
    .hero-text h1{
        font-size:2.6rem;
    }

    .hero-text p{
        font-size:1rem;
    }

    .hero-image img{
        max-width:300px;
    }

    .services{
        padding:35px 20px;
    }

    .services-title h2{
        font-size:2rem;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px 20px;
    }

    .contato-info h2{
        font-size:2rem;
    }

    .contato-form{
        padding:25px;
    }

    .sec3{
        padding:70px 20px;
    }

    footer{
        text-align:center;
        padding:20px;
        font-size:.9rem;
    }

}



.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;

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

    text-decoration: none;
    color: white;
    font-size: 30px;

    box-shadow: 0 10px 25px rgba(37,211,102,.4);

    z-index: 9999;
}

.whatsapp:hover{
    transform: scale(1.08);
}


.footer{
    background:#081524;
    color:#94a3b8;
    padding:24px 10%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

@media (max-width:700px){
    .footer-content{
        justify-content:center;
        text-align:center;
    }
}





