.elementor-104 .elementor-element.elementor-element-5ba0b4e{--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-ee714a9 */: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;
}

/* Herói Específico da Página de Estrutura */
.structure-hero {
    background-image: url('https://via.placeholder.com/1920x1080.png/005A3A/FFFFFF?text=Estrutura+Moderna');
}

.hero-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    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.75);
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto 0;
    opacity: 0.9;
}

/* Seção de Features (Cards) */
.features-section {
    background-color: var(--background-light);
    margin-top: -80px; /* Faz os cards sobreporem a seção herói */
    padding-top: 80px;
    position: relative;
    z-index: 5;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--saude-vida-orange);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--saude-vida-orange);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.3rem;
    color: var(--saude-vida-green-dark);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Seção de Showcase (Apresentação detalhada) */
.showcase-item {
    padding: 60px 0;
    background-color: var(--white);
}
.showcase-item:nth-child(even) { /* Layout alternado */
    background-color: var(--background-light);
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.showcase-content h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--saude-vida-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.showcase-content h3 {
    font-size: 2.2rem;
    color: var(--saude-vida-green-dark);
    margin-top: 5px;
}
.showcase-content p {
    line-height: 1.8;
    color: var(--text-light);
}
.showcase-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.showcase-content li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.showcase-content li i {
    color: var(--saude-vida-green);
    margin-right: 10px;
}
/* Alterna a ordem da imagem e texto */
.showcase-item.alt-layout .showcase-grid {
    grid-template-areas: "content image";
}
.showcase-item.alt-layout .showcase-image {
    grid-area: image;
}
.showcase-item.alt-layout .showcase-content {
    grid-area: content;
}

/* Seção Tour Virtual */
.virtual-tour-section {
    background-image: url('https://via.placeholder.com/1920x1080.png/003824/FFFFFF?text=Tour+Virtual');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax */
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 120px 0;
}
.virtual-tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 56, 36, 0.8);
}
.virtual-tour-section .container {
    position: relative;
    z-index: 2;
}
.virtual-tour-section h2 { font-size: 2.5rem; }
.virtual-tour-section p { font-size: 1.2rem; opacity: 0.9; }

.play-button {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: var(--saude-vida-orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    line-height: 80px;
    margin-top: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse 2s infinite;
}
.play-button:hover {
    transform: scale(1.1);
    background-color: #d16b11;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 131, 32, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(245, 131, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 131, 32, 0); }
}

/* Seção CTA (reutilizada) */
.cta-section {
    background: var(--background-light);
    text-align: center;
}
.cta-section h2 { font-size: 2.2rem; color: var(--saude-vida-green-dark); }
.cta-section p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }
.btn { padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.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(--saude-vida-green-dark); border: 2px solid var(--saude-vida-green); }
.btn-secondary:hover { background-color: var(--saude-vida-green); color: var(--white); transform: translateY(-3px); }

/* Responsividade */
@media screen and (max-width: 768px) {
    .showcase-grid, .showcase-item.alt-layout .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-areas: unset;
        text-align: center;
    }
    .showcase-item.alt-layout .showcase-image {
        grid-row: 1; /* Garante que a imagem venha primeiro no layout alternado */
    }
    .showcase-content ul {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
     .showcase-content li {
        justify-content: center;
    }
}/* End custom CSS */