/* =============================================
   ESTILOS GERAIS E LAYOUT PRINCIPAll
   ============================================= */

html {
    scroll-behavior: smooth;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

.verde{
	background-color: #092D14;	
}

#Serviços {
    scroll-margin-top: 80px; /* Ajuste para a altura do cabeçalho */
}

#Beneficios {
    scroll-margin-top: 110px; /* Ajuste para a altura do cabeçalho */
}

#Valores {
    scroll-margin-top: 120px; /* Ajuste para a altura do cabeçalho */
}

#Sobre {
    scroll-margin-top: 50px; /* Ajuste para a altura do cabeçalho */
}

#contato {
    scroll-margin-top: 50px; /* Ajuste para a altura do cabeçalho */
}

/* Estrutura do Header */

.main-header {
    background-color: #092D14;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* =============================================
   COMPONENTES DO HEADER
   ============================================= */

/* Logo */
.logo-link img {
    height: 70px;
    width: auto;
    max-width: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.05);
}

/* Menu Hambúrguer (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* =============================================
   NAVEGAÇÃO DESKTOP
   ============================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

.nav-link {
    position: relative; /* necessário para o pseudo-elemento ::after */
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FFA500; /* cor laranja médio do gradiente */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500); /* gradiente horizontal */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* =============================================
   SEÇÃO DE CONTATO E CTA
   ============================================= */

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 0;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #FF8C00; /* laranja mais escuro do gradiente */
    text-shadow: 0 1px 1px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.phone-link i {
    font-size: 1.1rem;
    position: relative;
    top: 1px;
}

.header-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-cta:hover {
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* =============================================
   VERSÃO MOBILE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .logo-link img {
        height: 50px;
        padding-left: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #04532e;
        padding: 25px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        padding: 0 25px;
        margin-right: 0;
        text-align: center;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Seção de Contato Mobile */
    .header-contact {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        align-self: flex-start;
        margin: 0 auto;
    }
    
    .phone-link {
        padding: 12px 20px;
        gap: 10px;
        background: rgba(255,255,255,0.15);
        border-radius: 6px;
        justify-content: center;
    }
    
    .phone-link i {
        font-size: 1.2rem;
        margin-right: 12px;
        margin-left: 0;
    }
    
    .header-cta {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

 /* Seção da primeira section */

 .solvenza-section {
        padding: 2rem 0;
	background: #ffffff;

    }    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .financeiro-content {
        order: 2;
    }
    
    .financeiro-image {
    order: 1;
    margin-bottom: 2rem;
    display: flex;           /* Ativa o flexbox */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    width: 100%;            /* Ocupa toda a largura disponível */
}

.team-photo {
    width: 85%;
    max-width: 600px;       /* Opcional: define largura máxima */
    height: auto;
    display: block;         /* Mantém como block para imagens */
    margin: 0 auto;         /* Centralização adicional */
}
    
   
    
    .divider {
        height: 3px;
        background: #5a2e2e;
        margin: 1rem 0;
        width: 100px;
    }
    
    .benefits-list {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.5rem;
    }
    
    .button-container {
        text-align: left; /* padrão para desktop */
    }
    
    .subtitle {
    color: #092D14;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: #092D14;;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
    
    @media (min-width: 768px) {
        .content-wrapper {
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }
        
        .financeiro-content {
            flex: 1;
            order: 1;
        }
        
        .financeiro-image {
            flex: 1;
            order: 2;
            margin-bottom: 0;
        }
    }
    
    @media (max-width: 767px) {
        .button-container {
            text-align: center; /* centraliza apenas no mobile */
        }
    }

/* Seção da segunda section */

.help-section {
            font-family: 'Segoe UI', Arial, sans-serif;
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	    background: #092D14;;
        }
        
        .help-section h2 {
            color: #ffffff;
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            position: relative;
           
        }
        
        .help-section h2:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #ffffff;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .help-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .help-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .help-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        
        .help-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #092D14;;
            min-width: 30px;
        }
        
        .help-text {
            color: #000000;
            font-size: 16px;
            line-height: 1.4;
        }
        
        .help-footer {
            text-align: center;
            margin-top: 30px;
            font-style: italic;
            color: #eef7f8;
            font-size: 14px;
        }
        
        .specialist-button {
    display: block;
    width: 250px;
    margin: 40px auto 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.specialist-button:hover {
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.4);
}

.specialist-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}
        
        .specialist-button i {
            margin-right: 10px;
        }


        .benefits-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
	    
        }
	
	.cor {
            
	    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }


        .benefits-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #092D14;;
        }

        .benefit-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-image {
    flex: 1 1 350px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Efeito de zoom suave ao passar o mouse */
.benefit-card:hover .benefit-image {
    transform: scale(1.03);
}

/* Sobreposição de cor para melhor legibilidade do texto */
.benefit-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-image::before {
    opacity: 1;
}

        .benefit-content {
            flex: 2 1 500px;
            padding: 20px;
        }

        .benefit-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #092D14;;
        }

        .benefit-content p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        /* Cores e imagens diferentes para cada card - CORREÇÃO (usando nth-of-type) */
.benefit-card:nth-of-type(1) .benefit-image {
    background-color: #e3f2fd;
    background-image: url('imagens/Mais-tempo.jpg');
}

.benefit-card:nth-of-type(2) .benefit-image {
    background-color: #e8f5e9;
    background-image: url('imagens/controle-total.jpg');
}

.benefit-card:nth-of-type(3) .benefit-image {
    background-color: #fff3e0;
    background-image: url('imagens/tome.jpg');
}

.benefit-card:nth-of-type(4) .benefit-image {
    background-color: #f3e5f5;
    background-image: url('imagens/nova-imagem.jpg');
}


        /* Responsividade */
        @media (max-width: 768px) {
            .benefit-card {
                flex-direction: column;
            }
            
            .benefit-image {
                width: 100%;
                min-height: 200px;
            }
            
            .benefits-section h2 {
                font-size: 2rem;
            }
            
            .benefit-content {
                padding: 25px;
            }
            
            .benefit-content h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .benefits-section h2 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .benefit-content {
                padding: 10px;
            }
        }


/*Funcionário CLT X Terceirização com a Solvenza*/

        .comparison-section-wrapper {
    width: 100%;
    background: #092D14;
    padding: 30px 0; /* Espaço vertical */
}

.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

        .comparison-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin: 40px 0 60px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 20px;
}

.comparison-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #127026, #5cb85c, #075718);
    border-radius: 2px;
}

        .comparison-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }

        .comparison-card {
            flex: 1 1 400px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .comparison-card:hover {
            transform: translateY(-5px);
        }

        .card-header {
            padding: 25px;
            text-align: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .employee-header {
            background-color: #e74c3c;
        }

        .solvenza-header {
            background-color: #2ecc71;
        }

        .price {
            font-size: 2rem;
            margin: 15px 0;
            font-weight: bold;
        }

        .employee-price {
            color: #e74c3c;
        }

        .solvenza-price {
            color: #2ecc71;
        }

        .benefits-list {
            padding: 0 25px 25px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .benefit-item:last-child {
            border-bottom: none;
        }

        .benefit-icon {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .employee-icon {
            color: #e74c3c;
        }

        .solvenza-icon {
            color: #2ecc71;
        }

        .savings-banner {
            background-color: #FFFFFF;
            color: #092D14;
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }

        .savings-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .savings-amount {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            .comparison-section h2 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .card-header {
                font-size: 1.3rem;
                padding: 20px;
            }
            
            .price {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .comparison-section h2 {
                font-size: 1.6rem;
            }
            
            .savings-banner h3 {
                font-size: 1.4rem;
            }
            
            .savings-amount {
                font-size: 2rem;
            }
        }  


/* ==================== SECTION FORMULÁRIO ==================== */
        .form-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .form-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: flex-start;
        }

        .form-header {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }

        .form-header h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 15px;
        }

        .form-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500); /* gradiente horizontal */
    border-radius: 2px;
}

        .form-header p {
            color: #ffffff;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            background-color: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        /* ==================== ESTILOS DO FORMULÁRIO ==================== */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--medium-gray);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        .form-group input::placeholder {
            color: var(--dark-gray);
            opacity: 0.7;
        }

        /* Estilo para o campo de WhatsApp */
        .whatsapp-field {
            position: relative;
        }

        .whatsapp-field i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-gray);
        }

        .whatsapp-field input {
            padding-left: 45px;
        }

        /* Estilo para os horários de contato */
        .contact-time {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .time-option {
            flex: 1;
            min-width: 120px;
        }

        .time-option input {
            display: none;
        }

        .time-option label {
            display: block;
            padding: 12px 15px;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
        }

        .time-option input:checked + label {
            background-color: var(--secondary-color);
            color: var(--white);
            border-color: var(--secondary-color);
        }

        /* Botão de submit */
       .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

        /* ==================== RESPONSIVIDADE ==================== */
        @media (max-width: 768px) {
            .form-header h2 {
                font-size: 1.8rem;
            }

            .form-header p {
                font-size: 1rem;
            }

            .contact-form {
                padding: 30px;
            }

            .time-option {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .form-section {
                padding: 40px 15px;
            }

            .contact-form {
                padding: 25px 20px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group input,
            .form-group select {
                padding: 12px 14px;
            }
        }

        /* ==================== BOTÃO FLUTUANTE WHATSAPP ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Cor oficial do WhatsApp */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E; /* Tom mais escuro para hover */
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Efeito de pulsação */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}

/*section sobre*/

  .solvenza-about {
        padding: 60px 0;
        
    }
    
    
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .responsive-img {
        width: 100%;
        height: auto;
        
    }
    
    .highlight-box {
        background-color: #f8f9fa;
        border-left: 4px solid #092D14;
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 0 8px 8px 0;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #333;
        font-style: italic;
        margin: 0;
    }
    
    .mission-vision {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .mv-item h3, .values h3 {
        color: #092D14;
        font-size: 1.3rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mv-item p {
        line-height: 1.6;
        color: #000000;
        margin: 0;
    }
    
    .values ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
     .values li {
        padding: 8px 0;
        padding-left: 30px;
        position: relative;
        line-height: 1.5;
        color: #000000; /* Texto branco */
    }
    
    .values li:before {
        content: "✓";
        color: #092D14;
        font-weight: bold;
        position: absolute;
        left: 0;
	
    }
    
    .icon {
        font-size: 1.2rem;
    }
    
    @media (min-width: 768px) {
        .about-content {
            flex-direction: row;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            order: 1;
        }
        
        .highlight-text {
            font-size: 1.3rem;
        }
    }

/* ==================== RODAPÉ ==================== */
.site-footer {
  background: #092D14;
  color: #ffffff;
  padding: 40px 0 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-slogan {
  color: #ffffff;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

.footer-copyright {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-address {
  color: #ffffff;
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-social {
  flex: 1;
  min-width: 250px;
}

.social-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ecf0f1;
  
}

.social-links {
  display: flex;
  gap: 10px;
  list-style: none;
  padding-left: 0%;
}

.social-links a {
  color: #ffffff;
  background-color: #34495e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}

.social-links i {
  font-size: 1.2rem;
}

/* Ano atual dinâmico */
#current-year {
  font-weight: bold;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-brand, 
  .footer-copyright,
  .footer-social {
    min-width: 100%;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-logo {
    margin: 0 auto 15px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 15px;
  }
  
  .social-links {
    gap: 15px;
  }
}  


  /* Classe .form-page substituindo o body */
        .form-page {
            background-color: var(--light-gray);
            color: var(--primary-color);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }

/* ==================== VARIÁVEIS E RESET ==================== */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #2980b9;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #7f8c8d;
            --white: #ffffff;
            --success-color: #27ae60;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }











