/*
 * DENTCOMM - ESTILOS PÁGINA BLOG (EM BREVE)
 * Versão: 1.0
 */

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 280px); /* 280px é uma aproximação da altura do footer */
    text-align: center;
    padding: var(--section-padding);
}

.coming-soon__container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.coming-soon__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.coming-soon__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    margin-bottom: 0;
}

.coming-soon__subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 1rem;
}