/**
 * Portal Prainha - Estilos Globais (global.css)
 */

/* 1. Base e Tipografia */
body {
    background-color: #f8fafc; /* Um cinza muito leve e limpo */
    font-family: 'Inter', sans-serif;
}

.bebas { 
    font-family: 'Bebas Neue', sans-serif; 
}

/* 2. Scrollbar Personalizada Premium */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
}

/* 3. Ajustes de Imagens Globais */
img {
    max-width: 100%;
    height: auto;
}

/* 4. Classes de Utilidade do Portal */
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 5. Componentes reutilizaveis */
.portal-nav-scroll {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    text-align: center;
}

.portal-nav-scroll::-webkit-scrollbar {
    display: none;
}

.portal-floating-menu {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    margin-top: -20px;
    position: relative;
    z-index: 40;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
}

.portal-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 25px 50px -20px rgba(15, 23, 42, 0.25);
}

.portal-badge-success {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 1rem;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.portal-btn-dark {
    background: #0f172a;
    color: #fff;
}

.portal-btn-dark:hover {
    background: #1d4ed8;
}

.portal-btn-disabled {
    cursor: not-allowed;
    background: #cbd5e1;
    color: #fff;
    opacity: 0.6;
}

.portal-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.16);
}

.portal-btn-whatsapp:hover {
    background: #128c7e;
}

.portal-page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.portal-page-link-active {
    background: #1e3a8a;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
}

.portal-page-link-inactive {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
}
