:root {
    --primary-color: #4A6741;
    --secondary-color: #8B7765;
    --text-color: #333;
    --background-color: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 90px;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero {
    background: linear-gradient(rgba(74, 103, 65, 0.8), rgba(74, 103, 65, 0.8)), url('https://grupoevoluagp.com.br/wp-content/uploads/2024/08/bannerhome.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}
/* Estilos para a seção Sobre */
#about {
    background-color: #f9f9f9;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.about-image-container:hover::before {
    opacity: 0.3;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.value-list {
    list-style-type: none;
    padding-left: 0;
}

.value-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.value-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-primary {
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .about-image-container {
        margin-bottom: 2rem;
    }
}
/* Estilos para a seção de Serviços */
#services {
    background-color: #f8f9fa;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
    }
}
.card {
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.card-title {
    color: var(--primary-color);
}

#contact form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--primary-color);
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}
/* Seção principal */
.admin-condominio-section {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Título principal */
.admin-condominio-section .wp-block-heading h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    position: relative;
}

.admin-condominio-section .wp-block-heading h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #007bff;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.admin-condominio-section .wp-block-paragraph {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

/* Listas de serviços */
.service-list {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list h3 {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 15px;
}

.service-list ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
}

.service-list ul li {
    margin-bottom: 10px;
    color: #495057;
    display: flex;
    align-items: center;
}

.service-list ul li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
}

.service-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Botão de contato */
.wp-block-buttons.aligncenter .wp-block-button__link {
    background-color: #007bff;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.wp-block-buttons.aligncenter .wp-block-button__link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.wp-block-buttons.aligncenter .wp-block-button__link:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .service-list {
        margin-bottom: 30px;
    }

    .wp-block-buttons.aligncenter .wp-block-button__link {
        font-size: 1rem;
        padding: 10px 25px;
    }
}
/* Seção principal */
.assessoria-condominial-section {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Título principal */
.assessoria-condominial-section .wp-block-heading h2 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
    position: relative;
}

.assessoria-condominial-section .wp-block-heading h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #28a745;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.assessoria-condominial-section .wp-block-paragraph {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}


/* Responsivo */
@media (max-width: 768px) {
    .service-list {
        margin-bottom: 30px;
    }

    .wp-block-buttons.aligncenter .wp-block-button__link {
        font-size: 1rem;
        padding: 10px 25px;
    }
}
/* Seção Sobre a Empresa */
.sobre-nos-section {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding-top: 60px;
    padding-bottom: 60px;
}

.sobre-nos-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.sobre-nos-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #007bff;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sobre-nos-section p,
.sobre-nos-section ul {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.sobre-nos-section ul {
    list-style: none;
    padding-left: 0;
}

.sobre-nos-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-nos-section ul li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Seção da Equipe */
.equipe-section {
    background-color: #ffffff; /* Fundo branco */
    padding-top: 60px;
    padding-bottom: 60px;
}

.equipe-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.equipe-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #28a745;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member-name {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

    .sobre-nos-section h2,
    .equipe-section h2 {
        font-size: 2rem;
    }

    .sobre-nos-section p,
    .sobre-nos-section ul,
    .team-member p {
        font-size: 1rem;
    }
}
/* Seção de Clientes */
.clientes-section {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding-top: 60px;
    padding-bottom: 60px;
}

.clientes-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2rem;
    color: #343a40;
}

.clientes-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.clientes-list li i {
    color: #007bff; /* Cor do ícone */
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .clientes-section h2 {
        font-size: 2rem;
    }

    .clientes-list {
        font-size: 1rem;
    }
}
