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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #105B63;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    color: #333;
    font-size: 1.1rem;
}

header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(16, 91, 99, 0.9);
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(16, 91, 99, 0.8);
}

.box-shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    max-width: 225px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Nav */
.nav-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:active, .nav-link:focus {
    color: #fff;
    color: #96CEB4;
}

.btn-destaque a {
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff !important;
    overflow: hidden;
    background: #105B63;
    transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-destaque a:hover {
    background: #96CEB4;
    box-shadow: 0 0 15px rgba(150, 206, 180, 0.7), 0 0 20px rgba(150, 206, 180, 0.3);
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-icons a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center; 
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.social-icons i {
    font-size: 20px;
    margin-right: 5px;
}

.social-icons p {
    margin: 0;
    font-size: 14px;
}

.social-responsive a {
    
    text-decoration: none;
}

.social-responsive a i {
    font-size: 20px;
    margin-left: 15px;
    color: #fff;
}


/* Banner */
.banner {
    background: url('../img/banner_bg_01.webp') no-repeat top center/cover;
    height: 700px;
    color: #fff;
    padding-top: 110px;
    background-attachment: fixed;
    position: relative;
    box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.8);
}

.text-banner {
    position: relative; 
    z-index: 2; 
    text-align: center; 
}

.text-banner h1 {
    font-size: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards; 
}

.text-banner p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 15px;    
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s forwards; 
}

.btn-banner {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 5px 30px;
    border: 1px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.btn-banner:hover {
    transform: scale(1.05); /* Aumenta o botão ao passar o mouse */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5); /* Sombra no hover */
}

/* Animação de Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner {
        background: url('../img/banner_bg_01_m.webp') no-repeat top center/cover;
    }
}


/* Services */
.services {
    background-color: #f0f0f0;
}

.services h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-box {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 2px solid #96CEB4;
    transition: transform 0.3s ease;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.feature-box p {
    font-size: 1.1rem;
}

.feature-box i {
    font-size: 40px;
    padding: 10px;
    color: #105B63;
}

.single-block {
    text-align: center;
}

/* Orçamento */

.orcamento {
    background: url('../img/orcamento_01.webp') no-repeat center center/cover;

    color: #fff;
    background-attachment: fixed;
}

.orcamento p {
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* About */

/* WhatsApp */

.whatsapp {
    position: fixed;
    bottom: 10%;
    right: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    z-index: 9999;
}

.whatsapp:hover {
    transform: translateY(-10px); 
}

.whatsapp a {
    background-color: #49c858;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.whatsapp img {
    width: 50px;
    height: 50px;
}

/* Footer */
.footer {
    background-color: #222;
    padding: 20px 0;
}

.footer .logo {
    max-width: 225px;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer .social-icons {
        justify-content: center !important;
        align-items: center !important;
    }
}
