:root {
    --primary-color: #99646a;
    --accent-color: #ddc4bf;
    --tercent-color:#ddc4bf;
}
body {
    display: none; /* Oculta o conteúdo da página inicialmente */
    background: #f4f4f4;
    font-family: Arial, sans-serif;
  }
  #loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #222;
    color: white;
    font-size: 24px;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    margin: auto;
}

body {
    font-family: montserrat;
    color: var(--primary-color);
    background-color: #f9f9f9;
    
}

.navbar {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    transition: background 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9); /* Cor sólida */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
     /* Ajuste de texto */
}
.options {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}
.options.scrolled{
    color: #99646a;
} 
.navbar img {
    
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    transform: scale(0.9);
    opacity: 0.8;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar li {
    margin: 0 1rem;
}



.navbar .options:hover {
    color: var(--accent-color);
}
#contato{
    text-decoration: none;
    background-color:var(--primary-color); border-radius: 20px; padding: 10px;color: white; transition: 1s;
}
.navbar #contato:hover{
    background-color:white; 
    color: #99646a; 
}


/* #home{
display: flex;
height: 1000px;
text-align: center;
align-items: center;
vertical-align: middle;
background: url(/Images/12\ ANOS\ DE\ EXPERIENCIA\ EM\ ADMINISTRAÇÃO\ CONDOMINIAL\ \(2\).png) no-repeat ;
background-size: 1990px;
color:#545454;
font-size: 27px; 
} */
#home img{
   display: none;
}
.slider{
    margin:0 auto;
    width: 100%;
    
    overflow: hidden;
    position: ;
    
}
#video1{
    display: block;
}


section {
    max-width: 1200px;
    padding: 2rem;
    margin-bottom: 50px;
    
}
#sobre h2{
    font-size: 40px;
    margin-top: 50px;
}
#sobre p {
    font-size: 21px;
}
#servicos{
    max-width: 1200px;
    padding: 2rem;
    font-size: 25px;
}
.services {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}
.card img{
    width: 400px;
    margin-bottom: 20px;
}

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

footer {
    width: 100%;
    color: whitesmoke;
    background: var(--primary-color);
    }
    #footer_contacts p{
        font-size: 30px;
    }
    .footer-link {
    text-decoration: none;
    }
    
    #footer_content {
    background-color: var(--color-neutral-10);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
    }
    
    #footer_contacts h1 {
    
    }
    
    #footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    } 
    
    #footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--color-neutral-40);
    border-radius: 50%;
    transition: all 0.4s;
    }
    
    #footer_social_media .footer-link i {
    font-size: 1.25rem;    
    }
    
    #footer_social_media .footer-link:hover {
    opacity: 0.7;
    }
    
    #instagram {
    background: linear-gradient(var(--primary-color),var(--tercent-color), var(--accent-color));
    }
    
    #facebook {
    background: linear-gradient(var(--primary-color),var(--tercent-color), var(--accent-color));
    }
    
    #whatsapp {
    background: linear-gradient(var(--primary-color),var(--tercent-color), var(--accent-color));
    }
    
    .footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    }
    
    .footer-list .footer-link {
    color: var(--color-neutral-30);
    transition: all 0.4s;
    }
    
    .footer-list .footer-link:hover {
    color: var(--accent-color);
    }
    
    #footer_subscribe {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    }
    
    #footer_subscribe p {
    color: var(--color-neutral-30);
    }
    
    #input_group {
    display: flex;
    align-items: center;
    background-color: var(--color-neutral-0);
    border-radius: 4px;
    }
    
    #input_group input {
    all: unset;
    padding: 0.75rem;
    width: 100%;
    border: 1px solid white;
    }
    
    #input_group button {
    background-color: var(--accent-color);
    border: none;
    color: var(--color-neutral-40);
    padding: 10px 1.25rem;
    font-size: 1.125rem;
    height: 100%;
    border-radius: 0px 4px 4px 0px;
    
    }
    
    .hamburger{
    display: none;
    }
    
    #footer_copyright {
        display: flex;
        justify-content: center;
        background-color: var(--color-neutral-0);
        font-size: 0.9rem;
        padding: 1.5rem;
        font-weight: 100;
    }
    #email{
    padding: 10px;
    padding-right: 50px ;
    border: 1px solid var(--accent-color);;
    border-radius: 10px 0px 0px 10px;
    }
    #whatsapp-link{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    font-size: 30px;
    text-align: center;
    border-radius: 50px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    transition: 0.2s;
    
    }
    #whatsapp-link:hover{
    opacity: 0.7;
    }
    #whatsapp-link i{
    margin-top: 16px;
    }
    #video2{
        display: none;
    }
    #footer_copyright{
        text-align: center;
    }
    
@media (max-width: 768px) {
    .navbar ul {
        text-align: center;
        flex-direction: column;
        display: none;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .navbar li{
        padding: 10px;
    }

    .navbar ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        font-size: 1.5rem;
        color: white;
    }
    #video1{
        display: none;
    }
    #home img{
        display: block;
    }
    .options {
        
        color: var(--primary-color);
        
    }
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .services{
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
    .card img{
        width: 280px;
    }
   
}
@media screen and (max-width: 500px) {

    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
        text-align: center;
    }
    #input_group button {
        color: var(--color-neutral-40);
        padding: 10px 0.7rem;
    }
}