/* ============================================
   MASSAGEM SENSUAL CURITIBA - Tema Vibrante e Acolhedor
   ============================================ */

:root {
    --primary: #8B2FC9;
    --primary-dark: #6B1FA9;
    --primary-light: #A855F7;
    --secondary: #E91E8C;
    --secondary-light: #F472B6;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --dark: #1A0A2E;
    --dark-soft: #2D1B4E;
    --text: #374151;
    --text-light: #6B7280;
    --light: #FDF2F8;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #6366F1;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-soft: linear-gradient(135deg, rgba(139,47,201,0.1), rgba(233,30,140,0.1));
    --shadow: 0 4px 20px rgba(139, 47, 201, 0.15);
    --shadow-lg: 0 10px 40px rgba(139, 47, 201, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--secondary); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 1050;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar-brand i {
    color: var(--secondary-light);
    font-size: 1.6rem;
}
.navbar-brand small {
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-light);
    font-weight: 400;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}
.nav-link i { margin-right: 0.3rem; }

.btn-login {
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.btn-glow {
    background: var(--gradient);
    color: var(--white) !important;
    border: none;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233,30,140,0.4);
    transition: var(--transition);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233,30,140,0.5);
    color: var(--white) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,114,182,0.2), transparent 70%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.hero h1 span {
    background: linear-gradient(90deg, var(--accent-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Search Box */
.hero-search {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 2;
}
.hero-search .form-control,
.hero-search .form-select {
    background: rgba(255,255,255,0.95);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}
.hero-search .form-control:focus,
.hero-search .form-select:focus {
    border-color: var(--secondary-light);
    box-shadow: 0 0 0 3px rgba(233,30,140,0.2);
}
.hero-search .btn-search {
    background: var(--gradient);
    border: none;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.hero-search .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.4);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}
.hero-stat {
    text-align: center;
    color: var(--white);
}
.hero-stat .number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-light);
}
.hero-stat .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section {
    padding: 4rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-alt { background: var(--white); }

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
}
.category-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.category-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}
.category-card h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.category-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   ANUNCIANTE CARD
   ========================================== */
.anunciante-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.anunciante-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.anunciante-card .card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.anunciante-card .card-img-wrapper {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
}
.anunciante-card .card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.anunciante-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.anunciante-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,10,46,0.8));
    padding: 2rem 1rem 1rem;
    color: var(--white);
}

.anunciante-card .card-body {
    padding: 1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.anunciante-card .card-nome {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.anunciante-card .card-nome .verified {
    color: var(--info);
    font-size: 0.9rem;
}

.anunciante-card .card-info {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}
.anunciante-card .card-info i {
    width: 18px;
    color: var(--primary-light);
}

.anunciante-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0.5rem 0;
}
.anunciante-card .card-tags span {
    background: var(--gradient-soft);
    color: var(--primary);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
}

.anunciante-card .card-footer-custom {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.anunciante-card .card-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.anunciante-card .card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

.btn-agendar {
    background: var(--gradient);
    color: var(--white) !important;
    border: none;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,47,201,0.4);
}

/* ==========================================
   PLANOS / PRICING
   ========================================== */
.plano-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #e5e7eb;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plano-card.destaque {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}
.plano-card.destaque::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plano-card .plano-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.plano-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.plano-card .preco {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
.plano-card .preco small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}
.plano-card .preco .cifrao {
    font-size: 1.2rem;
    vertical-align: super;
}

.plano-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.plano-card ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.plano-card ul li i.fa-check {
    color: var(--success);
}
.plano-card ul li i.fa-times {
    color: #d1d5db;
}

.plano-card .btn-plano {
    margin-top: auto;
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

/* ==========================================
   PERFIL DO ANUNCIANTE
   ========================================== */
.perfil-header {
    background: var(--gradient);
    padding: 3rem 0 2rem;
    color: var(--white);
}
.perfil-foto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.perfil-nome {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.perfil-badges {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}
.perfil-badges .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.perfil-content {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}
.perfil-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.perfil-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gradient-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.perfil-card h4 i {
    color: var(--primary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding-top: 100%;
}
.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================
   AGENDAMENTO
   ========================================== */
.agendamento-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.horario-btn {
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.horario-btn:hover, .horario-btn.selected {
    border-color: var(--primary);
    background: var(--gradient-soft);
    color: var(--primary);
}
.horario-btn.indisponivel {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ==========================================
   FORMS
   ========================================== */
.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(139,47,201,0.15);
}
.form-label {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,47,201,0.4);
    background: var(--gradient);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================
   LOGIN / CADASTRO
   ========================================== */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    width: 100%;
}
.auth-card h2 {
    text-align: center;
    margin-bottom: 0.3rem;
}
.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* ==========================================
   ADMIN & ANUNCIANTE PANELS
   ========================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1040;
    transition: var(--transition);
}

.admin-sidebar .sidebar-brand {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-sidebar .sidebar-brand h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}
.admin-sidebar .sidebar-brand small {
    color: var(--secondary-light);
    font-size: 0.75rem;
}

.admin-sidebar .sidebar-nav {
    padding: 1rem 0;
    list-style: none;
    margin: 0;
}
.admin-sidebar .sidebar-nav li {
    margin-bottom: 2px;
}
.admin-sidebar .sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.admin-sidebar .sidebar-nav a:hover,
.admin-sidebar .sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-left-color: var(--secondary-light);
}
.admin-sidebar .sidebar-nav a i {
    width: 20px;
    text-align: center;
}

.admin-sidebar .sidebar-nav .nav-badge {
    margin-left: auto;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 1.5rem;
    background: #f8f9fc;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}
.admin-header h1 {
    font-size: 1.6rem;
    margin: 0;
}

/* Stats Cards */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.stat-card .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}
.stat-card .stat-info h3 {
    font-size: 1.6rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.stat-card .stat-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Admin Tables */
.admin-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-table .table {
    margin: 0;
}
.admin-table .table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    border: none;
}
.admin-table .table td {
    padding: 0.8rem 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.status-badge {
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.status-ativo { background: #D1FAE5; color: #065F46; }
.status-inativo { background: #FEE2E2; color: #991B1B; }
.status-pendente { background: #FEF3C7; color: #92400E; }
.status-vip { background: #EDE9FE; color: #5B21B6; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}
.site-footer h4, .site-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact li i {
    color: var(--secondary-light);
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
}
.site-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1rem;
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-gradient-primary { background: var(--gradient); }
.bg-gradient-soft { background: var(--gradient-soft); }

.card-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
}

/* ==========================================
   PAGINATION OVERRIDE
   ========================================== */
.pagination .page-link {
    border: none;
    color: var(--primary);
    border-radius: 8px;
    margin: 0 3px;
    font-weight: 500;
}
.pagination .page-item.active .page-link {
    background: var(--gradient);
    color: var(--white);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-content {
        margin-left: 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .plano-card.destaque {
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-stat .number {
        font-size: 1.4rem;
    }
    .perfil-foto {
        width: 140px;
        height: 140px;
    }
    .section {
        padding: 2.5rem 0;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
