.elementor-98 .elementor-element.elementor-element-13d546f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a0053ef */:root {
    --saude-vida-green-dark: #003824;
    --saude-vida-green: #005A3A;
    --saude-vida-orange: #F58320;
    --text-dark: #334155;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --border-light: #e2e8f0;
    --white: #ffffff;
}

/* Estilos Gerais */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--saude-vida-green-dark);
    margin-bottom: 10px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Seção Herói */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('https://via.placeholder.com/1920x1080.png/003824/FFFFFF?text=Saúde+e+Vida');
    background-size: cover;
    background-position: center;
    padding: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 56, 36, 0.7);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 15px auto 0;
    opacity: 0.9;
}

/* Seção Linha do Tempo */
.timeline-section {
    background-color: var(--background-light);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
/* A linha central da timeline */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--saude-vida-orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
/* O círculo na linha */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--saude-vida-orange);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
/* Posiciona os containers */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
/* Ajusta o círculo para os itens da direita */
.timeline-item:nth-child(even)::after {
    left: -8px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--saude-vida-green);
}
.timeline-item:nth-child(odd) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--saude-vida-green);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--saude-vida-orange);
}
.timeline-content h3 {
    margin-top: 10px;
    color: var(--saude-vida-green-dark);
}

/* Seção Missão, Visão e Valores */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}
.mission-card {
    padding: 30px;
}
.mission-card i {
    font-size: 3rem;
    color: var(--saude-vida-orange);
    margin-bottom: 20px;
}
.mission-card h3 {
    font-size: 1.5rem;
    color: var(--saude-vida-green-dark);
    margin-bottom: 15px;
}
.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Seção Galeria */
.gallery-section {
    background-color: var(--background-light);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Seção CTA (Call to Action) */
.cta-section {
    background: linear-gradient(135deg, var(--saude-vida-green-dark), var(--saude-vida-green));
    text-align: center;
    color: var(--white);
}
.cta-section h2 {
    font-size: 2.2rem;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}
.btn-primary {
    background-color: var(--saude-vida-orange);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #d16b11;
    transform: translateY(-3px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--saude-vida-orange);
}
.btn-secondary:hover {
    background-color: var(--saude-vida-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item::after {
        left: 10px;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: none;
        border-left: 4px solid var(--saude-vida-green);
    }
}/* End custom CSS */