/* =========================================================
   BOTOES
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    min-height: 48px;
    padding: 0 var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: var(--hover-lift);
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-mid);
    display: inline-block;
    padding: 15px 30px;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
}
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    box-shadow: var(--shadow-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--primary-800);
    border-color: var(--border-cyan);
}

.btn-outline:hover {
    background: var(--primary-800);
    color: var(--neutral-0);
    box-shadow: var(--shadow-cyan);
}

/* =========================================================
   CARDS
========================================================= */
.card {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
}

.card-dark {
    background: var(--surface-strong);
    color: var(--text-on-dark);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-mid);
}

/* =========================================================
   BADGES
========================================================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: 999px;
    background: var(--secondary-500);
    color: var(--primary-950);
}

/* =========================================================
   TITULOS DE SECAO
========================================================= */
.section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-size-md);
    color: var(--text-on-light-soft);
    margin-bottom: var(--space-lg);
}

/* =========================================================
   ALERTAS
========================================================= */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.alert-success {
    background: rgba(59, 231, 244, 0.10);
    color: var(--primary-800);
    border: 1px solid rgba(59, 231, 244, 0.25);
}

.alert-error {
    background: rgba(201, 120, 74, 0.12);
    color: var(--contrast-500);
    border: 1px solid rgba(201, 120, 74, 0.30);
}

/* =========================================================
   GRID SIMPLES
========================================================= */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 768px) {
    .btn {
        width: 100%;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}


/* FIX MENU HEADER GENERATEPRESS */
.main-navigation ul,
.main-navigation ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}