/* Variáveis de cores */
:root {
    /* Cores de texto */
    --color-text-primary: #ff8d1e;
    --color-text-secondary: #06ba70; 
    --color-text-third: #0d3461;

    /* Cores de fundo */
    --color-bg-primary: #ff8d1e;
    --color-bg-secondary: #06ba70; 
    --color-bg-third: #0d3461;
}

/* Reset de estilos e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; 
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    letter-spacing: normal;
    word-spacing: normal; 
} 

body {
    overflow-x: hidden;
    background-color: #f9f9f9;
}

@media (max-width: 500px) {
    * {
        font-size: 13.5px;
    }
}
  
#section_about_page {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10vw;
    justify-content: center;
}

#section_about_page h3 {
    margin-bottom: 0.8rem;
} 

@media (max-width: 800px) {
    #section_about_page {
        padding: 0 5vw;
    }
}

.home_container_sp_group h2 {
    font-size: 1.2em;
    color: #fff; 
}

.home_about_page_group {
    background-image: linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.219)), url("/images/WhatsApp Image 2024-11-17 at 17.54.40.jpeg") !important;
    background-size: cover;
    background-position: center;
    margin-bottom: 3rem;
}
  
.vision-values {
    margin-bottom: 2rem;
}

.vision-values h2 {
    margin-bottom: 1rem;
    font-size: 1.2em;
    color: #0d3461;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
  
.values div {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values div ul li {
    list-style: none;
}
  
.values div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
  
.services h2 {
    margin-bottom: 1rem;
    font-size: 1.2em;
    color: #0d3461;
}


.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
  
.services-list article {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.services-list article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
  
blockquote {
    padding: 2rem;
    background: var(--background);
    border-radius: 5px;
    transition: transform 0.3s ease;
}
  
blockquote:hover {
    transform: translateY(-5px);
}
  
cite {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-top: 1rem;
}

  
.email a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
  
.email a:hover {
    color: var(--accent);
}
    
.contact { 
    width: 100%;
    margin: 2rem 0;
}

.contact h2 {
    margin-bottom: 1rem;
    font-size: 1.2em;
    color: #0d3461;
}