/**
 * Clube dos Cabos - Design Clean & Minimalista
 * Paleta: Preto Grafite (#1C1C1C), Dourado Metálico (#CFAF6F), Branco Pérola (#F5F3EC)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Bootstrap Button Styles */
.btn-warning {
    background-color: var(--dourado-metalico) !important;
    border-color: var(--dourado-metalico) !important;
    color: var(--preto-grafite) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-warning:hover {
    background-color: #E0C080 !important;
    border-color: #E0C080 !important;
    color: var(--preto-grafite) !important;
    opacity: 0.9 !important;
}

.btn-outline-light {
    border-color: rgba(245, 243, 236, 0.3) !important;
    color: var(--branco-perola) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover {
    background-color: rgba(245, 243, 236, 0.1) !important;
    border-color: var(--branco-perola) !important;
    color: var(--branco-perola) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 243, 236, 0.2) !important;
}

/* Menu Hambúrguer Mobile */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--branco-perola);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, var(--preto-grafite) 0%, var(--cinza-escuro) 100%);
    border-left: 1px solid rgba(207, 175, 111, 0.2);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(207, 175, 111, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-logo-img {
    height: 35px;
    filter: drop-shadow(0 0 10px rgba(207, 175, 111, 0.4));
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-logo-cpc {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dourado-metalico);
    text-shadow: 0 0 10px rgba(207, 175, 111, 0.5);
}

.mobile-logo-clube {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    color: var(--branco-perola);
    opacity: 0.9;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--branco-perola);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background-color: rgba(207, 175, 111, 0.2);
    color: var(--dourado-metalico);
}

.mobile-nav {
    flex: 1;
    margin-bottom: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--branco-perola);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 175, 111, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background-color: rgba(207, 175, 111, 0.1);
    color: var(--dourado-metalico);
    transform: translateX(5px);
}

.mobile-menu-actions {
    border-top: 1px solid rgba(207, 175, 111, 0.2);
    padding-top: 1.5rem;
}

:root {
    --preto-grafite: #1C1C1C;
    --dourado-metalico: #CFAF6F;
    --branco-perola: #F5F3EC;
    --cinza-escuro: #2A2A2A;
    --cinza-medio: #3A3A3A;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--preto-grafite);
    color: var(--branco-perola);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--branco-perola);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

a {
    text-decoration: none;
    color: var(--dourado-metalico);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dourado-hover);
}

/* Container Principal */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.logo-cpc {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dourado-metalico);
    letter-spacing: -0.025em;
}

.logo-separator {
    color: var(--branco-perola);
    font-size: 1.5rem;
    opacity: 0.6;
}

.logo-clube {
    color: var(--branco-perola);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}

/* Navegação */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--branco-perola);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: var(--cinza-escuro);
    color: var(--dourado-metalico);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-banner .testimonials-carousel {
    height: 100%;
}

.hero-banner .testimonials-track {
    height: 100%;
    align-items: stretch;
    justify-content: center;
}

.hero-banner .testimonial-card {
    height: 100vh;
    width: 20vw;
    border-radius: 0;
    border: none;
    flex: 0 0 20%;
    position: relative;
    overflow: hidden;
}

.hero-banner .testimonial-media {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-banner .testimonial-media video {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-banner .testimonial-media img,
.hero-banner .testimonial-media video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.25);
  
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(207, 175, 111, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(207, 175, 111, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Logo no Hero */
.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: heroLogoEntrance 1.5s ease-out;
}

@keyframes heroLogoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(207, 175, 111, 0.6))
            drop-shadow(0 0 60px rgba(207, 175, 111, 0.4));
    animation: heroLogoPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 40px rgba(207, 175, 111, 0.9))
            drop-shadow(0 0 80px rgba(207, 175, 111, 0.6))
            drop-shadow(0 0 100px rgba(0, 255, 136, 0.3));
}

@keyframes heroLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(207, 175, 111, 0.6))
                drop-shadow(0 0 60px rgba(207, 175, 111, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(207, 175, 111, 0.8))
                drop-shadow(0 0 80px rgba(207, 175, 111, 0.6))
                drop-shadow(0 0 100px rgba(0, 255, 136, 0.2));
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--branco-perola) 0%, var(--dourado-metalico) 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 30px rgba(207, 175, 111, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--dourado-metalico);
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--branco-perola);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(207, 175, 111, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--preto-grafite);
    border: 1px solid rgba(207, 175, 111, 0.3);
    box-shadow: 
        0 8px 32px rgba(207, 175, 111, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: rgba(224, 192, 128, 0.95);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(207, 175, 111, 0.3),
        0 0 30px rgba(207, 175, 111, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: buttonPulse 1s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 
        0 12px 40px rgba(207, 175, 111, 0.3),
        0 0 30px rgba(207, 175, 111, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { box-shadow: 
        0 12px 40px rgba(207, 175, 111, 0.4),
        0 0 40px rgba(207, 175, 111, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--branco-perola);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(207, 175, 111, 0.15);
    border-color: rgba(207, 175, 111, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(207, 175, 111, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(207, 175, 111, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(207, 175, 111, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Seções */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dourado-metalico);
}

/* Cards */
.card {
    background-color: var(--cinza-escuro);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--cinza-medio);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--sombra-sutil);
    border-color: var(--dourado-metalico);
}

/* Formulários */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--branco-perola);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: var(--cinza-escuro);
    border: 1px solid var(--cinza-medio);
    border-radius: 4px;
    color: var(--branco-perola);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--dourado-metalico);
    box-shadow: 0 0 0 3px var(--sombra-sutil);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--cinza-escuro);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--cinza-medio);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Logo no Footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(207, 175, 111, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 15px rgba(207, 175, 111, 0.6));
    transform: scale(1.05);
}

.footer-section h3 {
    color: var(--dourado-metalico);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--branco-perola);
    opacity: 0.85;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--cinza-medio);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dourado-metalico);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-medio);
    color: var(--branco-perola);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Seção de Histórias de Sucesso */
.success-stories-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.success-stories-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-stories-content {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 3rem;
    align-items: center;
}

.success-stories-text {
    color: white;
}

.success-stories-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.success-stories-title .highlight {
    color: #8b45ff;
}

.success-stories-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.btn-explore {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b45ff 0%, #ff0096 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 255, 0.3);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 255, 0.4);
}

/* Carrossel de Depoimentos */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 1rem;
}

.testimonial-card {
    flex: 0 0 20%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.2);
    border-color: rgba(139, 69, 255, 0.3);
}

.testimonial-media {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonial-media img,
.testimonial-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}



/* Indicadores */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    position: relative;
    z-index: 4;
}

.hero-banner .testimonials-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.indicator.active {
    background: rgba(207, 175, 111, 0.8);
    border-color: rgba(207, 175, 111, 0.4);
    transform: scale(1.3);
    box-shadow: 
        0 6px 20px rgba(207, 175, 111, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(207, 175, 111, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 8px 25px rgba(207, 175, 111, 0.6),
            0 0 15px rgba(207, 175, 111, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Estado vazio */
.testimonial-card.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card.empty-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.8);
    z-index: -1;
}

/* Responsividade */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 25%;
        height: 280px;
    }
    
    .hero-banner .testimonial-card {
        flex: 0 0 25%;
        width: 25vw;
    }
    
    .testimonials-track {
        gap: 0.8rem;
    }
    
    .success-stories-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Compacto */
    .header {
        padding: 0.5rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    /* Logo Responsivo Compacto */
    .logo {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .logo-cpc {
        font-size: 1rem;
    }
    
    .logo-separator {
        font-size: 0.8rem;
    }
    
    .logo-clube {
        font-size: 0.7rem;
    }
    
    /* Menu Desktop oculto no mobile */
    .nav-menu {
        display: none;
    }
    
    /* Hero Section Ajustada para Header Fixo */
    .hero {
        margin-top: 60px; /* Espaço para header fixo */
        min-height: calc(100vh - 60px);
    }
    
    .hero-banner .testimonial-card {
        height: calc(100vh - 60px);
    }
    
    .hero-banner .testimonial-media img,
    .hero-banner .testimonial-media video {
        height: calc(100vh - 60px);
        margin: 0 auto;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .success-stories-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-track {
        gap: 0.5rem;
    }
    
    .success-stories-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        flex: 0 0 50%;
        height: 200px;
    }
    
    .hero-banner .testimonial-card {
        flex: 0 0 50%;
        width: 50vw;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    /* Header Mobile Ultra Compacto */
    .header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }
    
    /* Logo Mobile Mínimo */
    .logo {
        gap: 0.3rem;
    }
    
    .logo-img {
        height: 20px;
    }
    
    .logo-text {
        flex-direction: row;
        gap: 0.2rem;
    }
    
    .logo-cpc {
        font-size: 0.8rem;
    }
    
    .logo-separator {
        display: none;
    }
    
    .logo-clube {
        font-size: 0.6rem;
    }
    
    /* Menu Desktop oculto no mobile pequeno */
    .nav-menu {
        display: none;
    }
    
    /* Hero Section Otimizada */
    .hero {
        margin-top: 50px;
        min-height: calc(100vh - 50px);
    }
    
    .hero-banner .testimonial-card {
        height: calc(100vh - 50px);
        flex: 0 0 100%;
        width: 100vw;
    }
    
    .hero-banner .testimonial-media img,
    .hero-banner .testimonial-media video {
        height: calc(100vh - 50px);
        margin: 0 auto;
    }
    
    .hero-logo {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .hero-content {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 10px;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .success-stories-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        height: 220px;
    }
    
    .hero-banner .testimonial-card {
        flex: 0 0 100%;
        width: 100vw;
    }
    
    .success-stories-section {
        padding: 4rem 1rem;
    }
}

/* ========================================
   DASHBOARD LAYOUT STYLES
   ======================================== */

/* Main Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    width: 280px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--branco-perola);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar Header */
.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(207, 175, 111, 0.3);
    background: rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    flex-shrink: 0;
}

.user-details h3 {
    color: var(--dourado-metalico);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-details p {
    color: var(--branco-perola);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--branco-perola);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    background: rgba(207, 175, 111, 0.15);
    color: var(--dourado-metalico);
    padding-left: 1.75rem;
}

.nav-item.active .nav-link {
    background: rgba(207, 175, 111, 0.2);
    color: var(--dourado-metalico);
    border-right: 4px solid var(--dourado-metalico);
    font-weight: 600;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-item.active .nav-link i {
    transform: scale(1.1);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(207, 175, 111, 0.3);
    background: rgba(0, 0, 0, 0.1);
}

.logout-btn {
    width: 100%;
    background: #dc2626;
    color: var(--branco-perola);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logout-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.profile-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 1rem;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dourado-metalico);
    box-shadow: 0 4px 12px rgba(207, 175, 111, 0.3);
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dourado-metalico), #e0c080);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto-grafite);
    font-size: 1.2rem;
    margin: 0;
}

.profile-info {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--preto-grafite);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.verified-icon {
    color: #1da1f2;
    font-size: 1rem;
}

.profile-title {
    color: var(--dourado-metalico);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--branco-perola);
}

.social-icon.facebook {
    background: #1877f2;
    color: var(--branco-perola);
}

.social-icon.youtube {
    background: #ff0000;
    color: var(--branco-perola);
}

.social-icon.tiktok {
    background: #000000;
    color: var(--dourado-metalico);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Action Button */
.btn-add-campaign {
    background: var(--preto-grafite);
    color: var(--dourado-metalico);
    border: 2px solid var(--dourado-metalico);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-add-campaign:hover {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 175, 111, 0.5);
    border-color: var(--dourado-metalico);
}

/* Profile Details */
.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--dourado-metalico);
    width: 16px;
}

/* Bio Section */
.profile-bio h4 {
    color: var(--preto-grafite);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-bio p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Labels Section */
.profile-labels h4 {
    color: var(--preto-grafite);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.labels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.label-tag {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.add-label-btn {
    background: #e9ecef;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.add-label-btn:hover {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
}

/* Dashboard Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Main Header */
.main-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--preto-grafite);
    margin: 0;
}

.btn-campaigns {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(207, 175, 111, 0.3);
}

.btn-campaigns:hover {
    background: #E0C080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 175, 111, 0.4);
}

/* Page Content */
.page-content {
    padding: 2rem;
}

/* Club Section */
.club-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.club-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--preto-grafite);
    margin-bottom: 0.5rem;
}

.club-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* User Profile Info */
.user-profile-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-label {
    color: var(--preto-grafite);
    font-weight: 600;
}

.verified-badge {
    color: #10b981;
    font-size: 1.2rem;
}

.user-type {
    color: var(--dourado-metalico);
    font-weight: 500;
    margin: 0;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--branco-perola);
}

.social-icon.facebook {
    background: #1877f2;
    color: var(--branco-perola);
}

.social-icon.youtube {
    background: #ff0000;
    color: var(--branco-perola);
}

.social-icon.tiktok {
    background: #000000;
    color: var(--dourado-metalico);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Action Button */
.btn-add-campaign {
    background: var(--preto-grafite);
    color: var(--dourado-metalico);
    border: 2px solid var(--dourado-metalico);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.btn-add-campaign:hover {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 175, 111, 0.5);
    border-color: var(--dourado-metalico);
}

/* Profile Details */
.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--dourado-metalico);
    width: 16px;
}

/* Bio Section */
.profile-bio p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Labels Section */
.profile-labels {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.label-tag {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.add-label-btn {
    background: #e9ecef;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    font-size: 0.8rem;
}

.add-label-btn:hover {
    background: var(--dourado-metalico);
    color: var(--preto-grafite);
}

/* Profile Navigation Links */
.profile-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.profile-nav-links .nav-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.profile-nav-links .nav-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Navigation Tabs */
.dashboard-nav {
    margin-bottom: 2rem;
}

.nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
}

.nav-tab {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tab:hover {
    color: var(--preto-grafite);
    background: #f8f9fa;
}

.nav-tab.active {
    color: var(--preto-grafite);
    border-bottom-color: var(--dourado-metalico);
    background: white;
}

/* Stats Section */
.stats-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--preto-grafite);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--preto-grafite);
}

.stat-icon.sales {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-icon.commissions {
    background: linear-gradient(135deg, var(--dourado-metalico), #e0c080);
}

.stat-icon.paid {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.stat-icon.pending {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--preto-grafite);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.stat-growth {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Notifications Section */
.notifications-section {
    margin-bottom: 2rem;
}

.notification-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-perola);
    font-size: 1rem;
}

.notification-icon.confirmed {
    background: #28a745;
}

.notification-icon.approved {
    background: var(--dourado-metalico);
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: var(--preto-grafite);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.notification-time {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Campaigns Section */
.campaigns-section {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.campaign-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campaign-header h4 {
    color: var(--preto-grafite);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.campaign-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.campaign-status.active {
    background: #d4edda;
    color: #155724;
}

.campaign-status.upcoming {
    background: #fff3cd;
    color: #856404;
}

.campaign-details {
    margin-bottom: 1.5rem;
}

.campaign-details p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.campaign-actions {
    display: flex;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .main-header {
        padding: 1rem;
    }
    
    .page-content {
        padding: 1rem;
    }
    
    .club-section {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .btn-add-campaign {
        width: 100%;
    }
}

