/* ==========================================================================
   Dra. Sibele Rocha | Ultra-Elegant Minimalist Coming Soon Page
   ========================================================================== */

:root {
    --color-bg: #ffffff;
    --color-text-title: #0f172a;
    --color-text-sub: #475569;
    --color-accent: #b41412;        /* Logo Signature Burgundy Red */
    --color-accent-light: rgba(180, 20, 18, 0.08);
    --color-border: rgba(226, 232, 240, 0.8);

    --color-whatsapp: #25d366;
    --color-instagram: #e1306c;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text-title);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Imagem de Fundo com 10% de opacidade e movimento suave */
.bg-image {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110vw;
    height: 110vh;
    background-image: url('img/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: bgPan 25s ease-in-out infinite alternate;
}

@keyframes bgPan {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.04) translate(-10px, -10px); }
}

/* Orbes de luz sutis de ambiente */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.orb-1 {
    top: 15%;
    left: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(180, 20, 18, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: 15%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    animation: floatOrb 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(0.9); }
    100% { transform: translateY(-30px) scale(1.1); }
}

/* Container Principal */
.container {
    position: relative;
    z-index: 1;
    max-width: 650px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

/* Status Pill Badge */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.15rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 20, 18, 0.2);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(180, 20, 18, 0.08);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Logotipo Wrapper com Brilho Shimmer */
.logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-box {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    transition: transform var(--ease-out-cubic) 0.4s;
}

.logo-box:hover {
    transform: translateY(-3px);
}

.logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
}

/* Brilho Shimmer que passa pelo logotipo */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: shimmerPass 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerPass {
    0%, 75% { left: -150%; }
    100% { left: 150%; }
}

/* Conteúdo Principal */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 600;
    color: var(--color-text-title);
    letter-spacing: -0.015em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

/* Linha decorativa animada sob o título */
.accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 3px;
    animation: expandLine 1.2s var(--ease-out-cubic) forwards;
}

@keyframes expandLine {
    0% { width: 0; opacity: 0; }
    100% { width: 80px; opacity: 1; }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-text-sub);
    font-weight: 400;
    max-width: 520px;
    line-height: 1.65;
}

/* Rodapé & Redes Sociais */
.footer {
    margin-top: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.35s var(--ease-out-back);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.social-btn.whatsapp:hover {
    background-color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.35);
}

/* Animações de Entrada Suaves (Cascata) */
.animate-fade-down {
    animation: fadeDown 0.8s var(--ease-out-cubic) forwards;
}

.animate-fade-scale {
    animation: fadeScale 1s var(--ease-out-cubic) 0.15s forwards;
    opacity: 0;
}

.animate-fade-up {
    animation: fadeUp 1s var(--ease-out-cubic) 0.3s forwards;
    opacity: 0;
}

.animate-fade-up-delay {
    animation: fadeUp 1s var(--ease-out-cubic) 0.45s forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.92) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 640px) {
    .container {
        gap: 1.75rem;
    }

    .logo {
        max-width: 190px;
    }

    .title {
        font-size: 2.1rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .social-btn {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }
}
