:root{
    --preto: #000000;
    --azul-escuro: #142026;
    --azul-medio: #123142;
    --azul-claro: #3B657A;
    --branco: #E9F0C9;
    --verde: #143504;
}

*{
    padding: 0;
    margin: 0;
}

#header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--azul-claro);
    width: 100%;
}

.logo {
    display: flex;
}

#header-img {
    width: 15%;
    height: auto;
    margin-left: 10px;
}

#nav-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    justify-content: flex-end;
}

.nav-link {
    text-align: right;
    font-size: 18px;
    text-decoration: none;
    color: black;
    margin-right: 20px;
}

button {
    padding: 5px 10px;
    border-radius: 20px;
}

#Início {
    background-color: var(--branco);
    display: flex;               
    align-items: center;         
    justify-content: center;
    height: 800px;               
}

.inicio-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#inicio-img {
    max-width: 100%;
    height: auto;
}

.entrar {
    background-color: var(--verde);
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

a{
    color: white;
    text-decoration: none;
}

h2 {
    font-family: IBM Plex, serif;
    margin: 20px; 
    text-align: center;
    color:var(--branco);

  }

.conheca-conteudo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 40px;
    gap: 40px;
  
  }
  
  .con {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--preto);
    font-family: inter, sans-serif;
    color:var(--branco);
  }
  
  .video {
    flex: 1;
    max-width: 100%;
   
  }

/* .conheca {
    background-color: #2ecc71; 
    width: 100%;
    height: 400px; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
} */
.conheca {
    background-color: var(--azul-medio);
    width: 100%;
    padding: 40px 0;
}

#nos{
    align-items:center;
    
}

.sobre-nos-container {
    display: flex;
    gap: 40px;
    align-items: center;      /* Centraliza verticalmente */
    justify-content: center;  /* Centraliza horizontalmente */
    flex-wrap: wrap;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin: 0;
    max-width: 650px;
}

.nos img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px auto;
    border: 6px solid var(--azul-claro);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nos h3 {
    text-align: center;
    margin-top: 10px;
}

.sobre-nos-texto {
    max-width: 400px;
    font-size: 1.1rem;
    color: var(--azul-escuro);
    background: #f7fafc;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    align-self: center;
    
}

#sobre-nos h1 {
    text-align: center;
    margin-bottom: 32px;
    margin-top: 50px;
}

.insta-btn {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--azul-claro);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border: none;
    box-shadow: 0 1px 4px rgba(59,101,122,0.08);
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    opacity: 0.92;
}
.insta-btn:hover {
    background: #2b4d5e;
    color: #e9f0c9;
    opacity: 1;
}

.nos .link {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

footer {
    margin-top: 50px;
    text-align: center;
    padding: 1rem 0;
    background: var(--azul-claro);
    color: var(--preto);
}