:root {
    --bg-primary: #ffffff;
    --bg-secondary: #F7FAFD;
    --bg-tertiary: #F8F9FA;
    --text-primary: #083a4f;
    --text-secondary: #5B5B5B;
    --accent-color: #083a4f;
    --accent-hover: #062a39;
    --border-color: #E0E0E0;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--accent-color);
}

header {
    background: var(--bg-primary);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#menu-placeholder {
    min-height: 80px;
}

#footer-placeholder {
    min-height: 300px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
}

.logo img {
    height: 55px;
    /* Defina a altura desejada para o seu logo aqui */
    width: auto;
    /* Mantém a proporção original da imagem */
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8B3DFF, #FF6B9D);
    /* Gradiente para o ícone do logo */
    border-radius: 50%;
}

/* Container para os links de navegação */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 10px 0;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Botões de abrir/fechar menu no mobile (hambúrguer) */
.nav-open-btn,
.nav-close-btn {
    display: none;
    /* Escondidos por padrão em telas grandes */
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Estilos do Novo Menu Dropdown --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-primary);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 100;
}

.dropdown-menu li a {
    color: var(--text-secondary);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Classe 'open' para mostrar o dropdown */
.dropdown.open>.dropdown-menu {
    display: block;
}

.hero {
    background: var(--bg-secondary);
    padding: 80px 20px;
}

/* ==========================================================================
   3. Seção Hero (Principal)
   ========================================================================== */
.hero-content {
    max-width: 1000px;
    /* Largura máxima para o conteúdo */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
    /* Permite que o texto ocupe o espaço disponível */
}

.hero-text small {
    color: #810E13;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
}

.hero-text h1 {
    color: var(--accent-color);
    font-size: 42px;
    margin: 20px 0 15px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
}

.hero-text small a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-text small a:hover {
    opacity: 0.7;
}

.breadcrumb-current {
    font-weight: 700;
}


.search-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza os itens horizontalmente */
    gap: 15px;
}

.search-btn {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
    font-size: 14px;
    color: white;
    width: 300px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    /* Torna o ícone branco */
}

/* Estilo para ícones SVG embutidos */
.search-btn .embedded-icon {
    width: 24px;
    height: 24px;
    /* A cor do preenchimento do SVG será controlada por esta variável */
    fill: var(--search-btn-icon-color, #8B3DFF);
    /* Cor padrão para o ícone, você pode ajustar */
}

.hero-image {
    flex: 1;
    /* Permite que a imagem ocupe o espaço disponível */
    text-align: center;
    /* Centraliza a imagem dentro do seu container */
}

.hero-image img {
    /* Ajuste o valor de max-width para alterar o tamanho da imagem do hero */
    max-width: 100%;
}

/* ==========================================================================
   4. Estilos de Seção Genéricos
   ========================================================================== */

.section {
    max-width: 1200px;
    /* Largura padrão para seções de conteúdo */
    margin: 0 auto;
    padding: 50px 40px;
}

.section-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.section p:not(.section-subtitle) {
    text-align: justify;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.alert-box {
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 4px;
    color: var(--text-secondary);
}

/* ==========================================================================
   5. Grids de Conteúdo
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 10px;
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
}

/* Justifica o texto dos parágrafos dentro do grid de conteúdo */
.content-grid p {
    text-align: justify;
}

.content-text {
    /* Garante que o texto não fique colado nas bordas em telas menores */
    padding: 0 10px;
}

/* Linha de separação de seções */
.section-divider {
    border: 0;
    height: 1px;
    background-color: #E0E0E0;
    margin: 40px 0;
}

/* ==========================================================================
   6. Seção Glossário
   ========================================================================== */

.glossary {
    background: #2C4A7C;
    /* Fundo azul escuro para a seção */
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 0 20px;
}

#glossario {
    background: var(--accent-color);
}

.glossary h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.glossary p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.alphabet {
    letter-spacing: 8px;
    font-size: 14px;
}

.alphabet a {
    text-decoration: none;
    /* Remove o sublinhado */
    color: inherit;
    /* Herda a cor branca do contêiner */
    transition: opacity 0.3s;
}

.alphabet a:hover {
    opacity: 0.7;
    /* Adiciona um leve efeito de transparência ao passar o mouse */
}


/* ==========================================================================
   7. Seção Especialistas
   ========================================================================== */

.specialists {
    background: var(--bg-tertiary);
    padding: 80px 20px;
}

.specialists-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.specialists-text h3 {
    color: #8B3DFF;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.specialists-text h2 {
    color: var(--accent-color);
    font-size: 36px;
    margin-bottom: 15px;
}

.specialists-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.specialists-images {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    /* Alinha as imagens à direita dentro do contêiner */
}

.specialists-images img {
    border-radius: 15px;
    width: 100%;
    /* Ajuste o valor de max-width para definir o tamanho das imagens */
    max-width: 250px;
    height: auto;
    /* Mantém a proporção da imagem */
}

/* ==========================================================================
   8. Seção Localizações
   ========================================================================== */

.locations {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.locations h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 60px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    background: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    display: block;
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.location-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ==========================================================================
   9. Seção Saúde e Bem-Estar
   ========================================================================== */

.health-section {
    background: var(--bg-tertiary);
    padding: 80px 20px;
}

.health-content {
    max-width: 1200px;
    margin: 0 auto;
}

.health-content h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 10px;
}

.health-content>p {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.health-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.health-card h3 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.health-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.health-card a {
    text-decoration: none;
    /* Remove o sublinhado do link */
    color: inherit;
    /* Faz o link herdar a cor do elemento pai */
}

/* ==========================================================================
   10. Rodapé
   ========================================================================== */

footer {
    background: var(--bg-tertiary);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a,
.footer-links a,
.contact-info li {
    color: #5B5B5B;
    font-size: 13px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--accent-color);
    margin: 30px auto 40px;
    max-width: 1200px;
    width: 100%;
}

/* ==========================================================================
   11. Estilos Unificados (da página de clínica)
   ========================================================================== */

/* Grid para listar clínicas */
.clinics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clinic-card {
    background: white;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    transition: box-shadow 0.3s;
}

.clinic-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clinic-icon {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    /* Centraliza o conteúdo (o logo) horizontalmente */
}

.clinic-icon img {
    width: 180px;
    /* Define um tamanho pequeno para o logo */
    height: auto;
    filter: grayscale(100%);
    /* Aplica o filtro de escala de cinza */
    opacity: 0.6;
    /* Deixa o logo um pouco mais suave */
}

.clinic-card h3 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.clinic-subtitle {
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.clinic-detail {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.clinic-detail strong {
    color: var(--accent-color);
}

.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ==========================================================================
   12. Media Queries (Responsividade)
   ========================================================================== */

/* Para tablets e telas menores (até 920px) */
@media (max-width: 920px) {

    /* Transforma a navegação em um menu lateral (hambúrguer) */
    .nav-links {
        position: fixed;
        /* Posição fixa para cobrir a tela */
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Classe 'open' para exibir o menu lateral */
    .nav-links.open {
        right: 0;
    }

    /* Exibe os botões de abrir/fechar o menu */
    .nav-open-btn,
    .nav-close-btn {
        display: block;
    }

    .nav-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* --- Ajustes de Layout Específicos para Telas Menores --- */
    /* Seção Hero */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image {
        display: none;
        /* Oculta a imagem no mobile */
    }

    /* Ajusta grids de outras seções para uma única coluna */
    .content-grid,
    .specialists-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Ajusta o menu dropdown para o modo mobile */
    .dropdown-menu {
        position: static;
        /* Remove o posicionamento absoluto */
        box-shadow: none;
        background-color: #f8f8f8;
    }

    .content-image {
        text-align: center;
    }

    /* Ajusta grids para duas colunas em tablets */
    .location-grid,
    .health-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clinics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {

    .hero-text p,
    .section-subtitle,
    .content-grid p,
    .section p {
        text-align: justify;
    }

    .hero-text h1,
    .section-title,
    .content-grid h2 {
        text-align: center;
    }
}

/* Para celulares (até 576px) */
@media (max-width: 576px) {

    /* Reduz o espaçamento das seções */
    .section {
        padding: 30px 20px;
    }

    .alert-box {
        padding: 20px;
    }

    .location-grid,
    .health-grid {
        grid-template-columns: 1fr;
    }

    .clinics-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    /* Botões de busca ocupam a largura total */
    .search-btn {
        width: 100%;
    }

    .hero-image img,
    .content-image img,
    .specialists-images img {
        max-width: 100%;
    }

    .specialists-images {
        justify-content: center;
    }
}

/* ==========================================================================
   13. Estilos Específicos - Ruas Principais (Liberdade)
   ========================================================================== */
.streets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.street-card-wrapper {
    flex: 1;
    min-width: 300px;
}

.street-card {
    background: #fdfdfd;
    padding: 25px;
    border-top: 4px solid #0056b3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.street-title {
    color: #0056b3;
    margin-top: 0;
}

.street-list {
    padding-left: 20px;
}

.streets-note {
    margin-top: 30px;
    font-style: italic;
    text-align: center;
    color: #666;
}

/* ==========================================================================
   14. Estilos Específicos - Vila Mariana (Novo Padrão)
   ========================================================================== */
.column-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.column-card {
    flex: 1;
    min-width: 300px;
    background: #fdfdfd;
    padding: 25px;
    border-top: 4px solid #0056b3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.vias-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.via-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* --- Rodapé Profissional (3 Colunas) --- */
.main-footer {
    background-color: #fcfcfc;
    padding: 80px 0 40px;
    color: #4a5568;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #e0e6ed;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-category h4 {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 60px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #e0e6ed;
    margin-bottom: 40px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-copyright {
    font-size: 13px;
    color: #a0aec0;
}

.footer-disclaimer {
    font-size: 12px;
    color: #718096;
    max-width: 700px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
}

/* Links desativados */
.footer-links a.link-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    transition: none;
}

.footer-links a.link-disabled:hover {
    transform: none;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsividade do Rodapé */
@media (max-width: 920px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        gap: 40px;
    }
}

/* ==========================================================================
   15. Novas Seções (Adaptadas do Renal Expert)
   ========================================================================== */

/* --- Serviços Especializados: Grid de Cards --- */
.services-grid-section {
    background-color: #f4f7f9;
    padding: 80px 0;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: left;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(8, 58, 79, 0.12);
    border-color: var(--accent-color);
}


.service-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* --- Seção Newsletter --- */
.newsletter-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.newsletter-container {
    background: linear-gradient(135deg, #f0f4f4 0%, #e8eeee 100%);
    border-radius: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.newsletter-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-content h2 {
    color: var(--accent-color);
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    max-width: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 20px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    background: white;
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    padding: 20px 35px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
    font-size: 15px;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.newsletter-image {
    flex: 1;
    margin: 0;
    padding: 0;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Seção Promoção de Empregos --- */
.job-promotion-section {
    background: linear-gradient(135deg, #062a39 0%, #083a4f 100%);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.job-promotion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-promotion-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-white-outline:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        flex-direction: column;
    }

    .job-promotion-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- Estilos Premium (Modelo Renal Expert) --- */

.premium-feature-section {
    padding: 80px 20px;
    background-color: var(--bg-primary);
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.premium-feature-item {
    text-align: left;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: transform 0.3s;
}

.premium-feature-item:hover {
    transform: translateY(-5px);
}

.premium-feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.premium-feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.premium-feature-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.info-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hero-cta-container {
    margin-top: 30px;
}

.btn-premium {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(8, 58, 79, 0.2);
}

.btn-premium:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 58, 79, 0.3);
}

@media (max-width: 992px) {
    .premium-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}