/* Dentista Starter - Template Clínica */
/* Estilos adicionais para o layout de clínica */

/* Top Bar */
.clinica-topbar {
    background: var(--dentista-secondary);
    padding: 10px 0;
    font-size: 0.85rem;
}

.clinica-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clinica-topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.clinica-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.clinica-topbar-item svg {
    width: 14px;
    height: 14px;
}

.clinica-topbar-right {
    display: flex;
    gap: 12px;
}

.clinica-topbar-right a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.clinica-topbar-right a:hover {
    color: var(--dentista-white);
}

.clinica-topbar-right svg {
    width: 16px;
    height: 16px;
}

/* Header ajustes */
.clinica-header {
    top: 42px;
}

.clinica-template .dentista-logo svg {
    width: 36px;
    height: 36px;
    color: var(--dentista-primary);
}

/* Hero Clínica */
.clinica-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    background: var(--dentista-gray-900);
}

.clinica-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.clinica-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinica-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(13, 148, 136, 0.7) 100%);
}

.clinica-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.clinica-hero .dentista-hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dentista-white);
    backdrop-filter: blur(10px);
}

.clinica-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dentista-white);
    margin-bottom: 24px;
}

.clinica-hero .dentista-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
}

/* Stats */
.clinica-hero-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.clinica-stat {
    text-align: left;
}

.clinica-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dentista-white);
    line-height: 1;
}

.clinica-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.clinica-btn-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--dentista-white);
    backdrop-filter: blur(10px);
}

.clinica-btn-light:hover {
    background: var(--dentista-white);
    color: var(--dentista-primary);
    border-color: var(--dentista-white);
}

/* Section Tag */
.clinica-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--dentista-accent);
    color: var(--dentista-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sobre Clínica */
.clinica-sobre .dentista-sobre-img-wrapper {
    position: relative;
}

.clinica-sobre-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--dentista-shadow-xl);
    border: 4px solid var(--dentista-white);
}

.clinica-sobre-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinica-features {
    margin-bottom: 32px;
}

/* Diferenciais */
.clinica-diferenciais {
    padding: 100px 0;
    background: var(--dentista-white);
}

.clinica-diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.clinica-diferencial {
    text-align: center;
    padding: 40px 24px;
    background: var(--dentista-gray-50);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.clinica-diferencial:hover {
    background: var(--dentista-white);
    box-shadow: var(--dentista-shadow-xl);
    transform: translateY(-8px);
}

.clinica-diferencial-icon {
    width: 70px;
    height: 70px;
    background: var(--dentista-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.clinica-diferencial:hover .clinica-diferencial-icon {
    background: var(--dentista-primary);
}

.clinica-diferencial-icon svg {
    width: 32px;
    height: 32px;
    color: var(--dentista-primary);
    transition: all 0.3s ease;
}

.clinica-diferencial:hover .clinica-diferencial-icon svg {
    color: var(--dentista-white);
}

.clinica-diferencial h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dentista-gray-900);
    margin-bottom: 12px;
}

.clinica-diferencial p {
    font-size: 0.95rem;
    color: var(--dentista-gray-600);
    line-height: 1.6;
}

/* Responsivo Clínica */
@media (max-width: 1024px) {
    .clinica-diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clinica-hero h1 {
        font-size: 3rem;
    }
    
    .clinica-hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .clinica-topbar {
        display: none;
    }
    
    .clinica-header {
        top: 0;
    }
    
    .clinica-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .clinica-hero h1 {
        font-size: 2.25rem;
    }
    
    .clinica-hero .dentista-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .clinica-hero-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .clinica-stat {
        text-align: center;
    }
    
    .clinica-stat-number {
        font-size: 2rem;
    }
    
    .clinica-diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .clinica-sobre-img-small {
        display: none;
    }
}

@media (max-width: 480px) {
    .clinica-hero h1 {
        font-size: 1.875rem;
    }
}
