/* ==========================================================================
   1. CONFIGURAÇÕES GERAIS / RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. LAYOUT PRINCIPAL & BACKGROUND
   ========================================================================== */
.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    background-image: url('images/fundolp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1rem;
}

/* Filtro escuro e blur sobre o fundo */
.backdrop-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Container do conteúdo (fica acima do overlay) */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 48rem; 
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;    /* Empurra o conteúdo para o centro vertical */
    margin-bottom: auto; /* Empurra o conteúdo para o centro vertical */
}

/* ==========================================================================
   3. COMPONENTES E TEXTOS
   ========================================================================== */

/* Logo */
.logo-container {
    margin-bottom: 1.25rem;
}

.logo-img {
    width: 12rem; /* w-48 (192px) inicial */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

/* Agrupamento de Texto */
.text-group {
    color: #ffffff;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.title-main {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800;
    tracking-tight: -0.025em;
    line-height: 1.25;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
    margin-bottom: 0.5rem;
}

.title-highlight {
    color: #f8c1be;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800;
    tracking-tight: -0.025em;
    line-height: 1.25;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
    margin-bottom: 0.5rem;
}

.description {
    font-size: 1rem; /* text-base */
    color: #e5e7eb; /* text-gray-200 */
    font-weight: 300;
    line-height: 1.625;
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

/* Badge 'Em Desenvolvimento' */
.badge {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.status-dot {
    display: flex;
    height: 0.75rem;
    width: 0.75rem;
    position: relative;
}

.dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: #818cf8; /* indigo-400 */
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-core {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.75rem;
    width: 0.75rem;
    background-color: #f472b6; /* pink-400 */
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #f9fafb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rodapé */
.footer {
    position: relative; /* Mudou de 'absolute' para 'relative' */
    bottom: 0;          /* Remove a necessidade de valores absolutos */
    z-index: 10;
    text-align: center;
    font-size: 0.75rem;
    color: #d1d5db;
    letter-spacing: 0.05em;
    margin-top: 2rem;   /* Garante um espaçamento mínimo seguro caso a tela encolha muito */
    width: 100%;
}

/* ==========================================================================
   4. ANIMAÇÕES & RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* Animação do Pulsar (Ping) */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsividade para telas maiores (md: do Tailwind) */
@media (min-width: 768px) {
    .logo-img {
        width: 18rem; /* md:w-72 (288px) */
    }

    .title-main, .title-highlight {
        font-size: 3rem; /* md:text-5xl */
    }

    .description {
        font-size: 1.25rem; /* md:text-xl */
    }
}