/* Estilos específicos para páginas de contatos e sobre */

/* Seção Hero de Contatos */
.contact-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #17A649;
}

.contact-hero .hero-content {
    margin: 0 auto;
    width: 60%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero .hero-text {
    animation: slideInFromLeft 1s ease-out;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 204, 102, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.contact-hero .hero-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-hero .hero-image {
    animation: slideInFromRight 1s ease-out 0.3s both;
    position: relative;
    text-align: center;
}

.contact-hero .hero-image i {
    font-size: 8rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 204, 102, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Seção de Informações de Contato */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 204, 102, 0.2);
    border-color: var(--primary);
}




.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #17A649;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 204, 102, 0.4);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: #1ccf5b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card span {
    color: #1d1d1d;
    font-size: 0.9rem;
}

/* Seção Hero Sobre a Empresa */
.about-hero {
    padding: 120px 0 80px;
    background: #17A649;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-hero .hero-content {
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-text {
    animation: slideInFromLeft 1s ease-out;
}.hero-title {
    color: aliceblue;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 204, 102, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.about-hero .hero-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero .hero-image {
    animation: slideInFromRight 1s ease-out 0.3s both;
    position: relative;
    text-align: center;
}

.about-hero .hero-image i {
    font-size: 8rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 204, 102, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Seção de Conteúdo Sobre */
.about-content-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text {
    animation: slideInFromLeft 1s ease-out;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000111d2;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #00011194;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    animation: slideInFromRight 1s ease-out 0.3s both;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Seção de Valores */


.values-section {
    padding: 40px 0;
}

.values-title {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out both;
}

.values-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000111d2;
    margin-bottom: 20px;
}

.values-title p {
    font-size: 1.3rem;
    color: #00011194;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 204, 102, 0.2);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #17a6492f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #17A649;
    font-weight: 900;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 204, 102, 0.4);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000111d2;
    margin-bottom: 20px;
}

.value-card p {
    color: #00011179;
    line-height: 1.6;
    font-size: 1rem;
}

/* Container da Seção */
.timeline-container {
    padding: 50px 0;
    text-align: center;
}
/* O Contêiner da Linha do Tempo em si */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* O truque: A Linha Vertical Central */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #93e4839d;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    margin-left: -3px;
}

/* Estilo para cada item da linha do tempo */
.timeline-item {
    animation: fadeInUp 0.8s ease-out both;
    padding: 10px 40px;
    position: relative;
    width: 50%;
    
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.9s; }
/* Pontos (Bolhas) na linha do tempo */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 4px solid white;
    background-color: #38b000;
    border-radius: 50%;
    z-index: 11;
    top: 30px;
}

/* Itens à Esquerda */
.left {
    left: 0;
    text-align: right;
}

.left::before {
    right: -7.5px;
}


/* Itens à Direita */
.right {
    left: 50%;
    text-align: left;
}

.right::before {
    left: -7.5px;
}

.timeline-content {
    padding: 20px 30px;
    border-radius: 6px;
}

.timeline-content .year {
    font-weight: bold;
    color: #38b000;
    display: block;
    margin-bottom: 5px;
}
.participe {
    width: 100%;
    background: #17A649;
    color: white;
    padding: 80px 0;
    margin-top: 20px;
    z-index: -1;
}
.participe p {
    color: #f2f2ff;
}

.section-title h2 {
    color: white;
}

/* Animações */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 204, 102, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 204, 102, 0.8), 0 0 30px rgba(0, 204, 102, 0.4);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-hero .hero-content,
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-hero .hero-title,
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-description,
    .about-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .contact-hero .hero-image i,
    .about-hero .hero-image i {
        font-size: 5rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero,
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title,
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-image i,
    .about-hero .hero-image i {
        font-size: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Variáveis de Cores (Opcional, mas útil) */
:root {
    --verde-principal: #28a745;
    --verde-claro: #e6ffe6;
    --cor-texto: #333;
    --cor-cinza-claro: #ccc;
    --cor-fundo: #f9f9f9;
}

/* Estilos de Layout Principal (Duas Colunas) */
.container-principal {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de largura igual */
    gap: 40px; /* Espaço entre as colunas */
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    color: var(--cor-texto);
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* --- Estilos do Formulário --- */

.form-contato {
    font-family: Arial, sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1; /* Faz com que os campos ocupem espaço igual em um form-row */
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: none; /* Desativa o flexbox para ocupar a largura total */
}

label {
    font-weight: bold;
    color: var(--cor-texto);
    margin-bottom: 5px;
    font-size: 0.9em;
}

.obrigatorio {
    color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    padding: 10px;
    border: 1px solid var(--cor-cinza-claro);
    border-radius: 5px;
    font-size: 1em;
    color: var(--cor-texto);
    width: 100%; /* Garante que o input preencha o form-group */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

select {
    /* Estilização para a seta do select ser parecida com a imagem */
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4"><path fill="%23444" d="M287 69.4L146.2 208.6 5.4 69.4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px;
    cursor: pointer;
}

textarea {
    resize: vertical; /* Permite redimensionamento vertical */
}

.caracteres-limite {
    font-size: 0.8em;
    color: #888;
    margin-top: 5px;
}

.btn-enviar {
    background-color: var(--verde-principal);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-enviar:hover {
    background-color: #1e7e34;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    background: transparent;
    border: none;
    outline: none;
}
.icone-enviar {
    margin-right: 8px;
    font-size: 1.2em; /* Ícone de envelope */
}

/* --- Estilos da Coluna de Informações (Direita) --- */

/* Mapa Placeholder */
.mapa-placeholder {
    height: 250px;
    background-color: #e0f0e0; /* Cor que imita o mapa */
    border-radius: 8px;
    margin-top: 10px;
}

.ver-mapa {
    color: var(--verde-principal);
    font-size: 0.9em;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

/* Redes Sociais */
.secao-redes-sociais {
    margin-top: 30px;
    padding: 0 0 20px 0;
}

.icones-sociais {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.facebook { background-color: #3b5998; }
.instagram { background-color: #c13584; }
.whatsapp { background-color: #25d366; }

/* Informações Adicionais (Lista de Vantagens) */
.secao-informacoes {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.secao-informacoes h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: var(--cor-texto);
}

.secao-informacoes ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.secao-informacoes li {
    margin-bottom: 8px;
    color: #444;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.check-verde {
    color: var(--verde-principal);
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.1em;
}

/* --- Responsividade (Para telas menores) --- */
@media (max-width: 768px) {
    .container-principal {
        grid-template-columns: 1fr; /* Apenas uma coluna em telas pequenas */
    }
    .form-row {
        flex-direction: column; /* Campos um abaixo do outro */
        gap: 0;
    }
    .form-group {
        margin-bottom: 15px;
    }
}