/* ============================================
   CSS BOLADO - Matheus Padilha Edition
   Design Premium, Impactante e Profissional
   Para mostrar quem é que manda no fitness!
============================================= */

/* ====================
   VARIÁVEIS GLOBAIS
==================== */
:root {
    /* Cores Principais - Fitness Aggressive */
    --primary: #FF6B35; /* Laranja Energético */
    --primary-dark: #E55A2B;
    --secondary: #2A2D43; /* Azul Profundo */
    --accent: #00D4AA; /* Verde Vida */
    --accent-dark: #00B894;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --danger: #FF4757;
    --success: #2ED573;
    
    /* Gradientes Épicos */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    --gradient-dark: linear-gradient(135deg, #2A2D43 0%, #1A1D2E 100%);
    --gradient-accent: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA726 100%);
    --gradient-silver: linear-gradient(135deg, #C0C0C0 0%, #E0E0E0 100%);
    --gradient-bronze: linear-gradient(135deg, #CD7F32 0%, #B86B2A 100%);
    
    /* Cores de Texto */
    --text-light: #FFFFFF;
    --text-dark: #2A2D43;
    --text-muted: #8A8C9E;
    
    /* Sombras Profissionais */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Fontes */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Efeitos */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================
   TEMA ESCURO
==================== */
[data-bs-theme="dark"] {
    --secondary: #1A1D2E;
    --text-dark: #E2E8F0;
    --text-muted: #A0AEC0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ====================
   RESET & BASE
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
    transition: var(--transition);
}

[data-bs-theme="dark"] body {
    background-color: #121212;
    color: var(--text-dark);
}

/* ====================
   TYPOGRAPHY BOLADA
==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* ====================
   NAVBAR EXPLOSIVA
==================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--primary);
    transition: var(--transition);
}

[data-bs-theme="dark"] .navbar {
    background: rgba(26, 29, 46, 0.95);
    border-bottom-color: var(--primary);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--text-dark);
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ====================
   THEME TOGGLE FODA
==================== */
.theme-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.btn-theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-dark);
    border: none;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-lg);
}

.btn-theme-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-theme-toggle:hover::before {
    opacity: 1;
}

/* ====================
   HERO SECTION BOMBÁSTICA
==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

[data-bs-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #121212 0%, #1A1A1A 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title .highlight {
    font-size: 4.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title .highlight {
        font-size: 2.8rem;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-success {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* ====================
   HERO IMAGE WRAPPER
==================== */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-main-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-main-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating-cards {
    position: absolute;
    bottom: -50px;
    left: -30px;
    right: -30px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.floating-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 30%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .floating-card {
    background: var(--secondary);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.floating-card.card-1 {
    transform: translateY(20px);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    animation: float 3s ease-in-out infinite 0.5s;
}

.floating-card.card-3 {
    transform: translateY(-20px);
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.floating-card p {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

/* ====================
   ABOUT SECTION
==================== */
.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(5deg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h4 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title-main {
    display: block;
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title-sub {
    display: block;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.specialties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.specialty-item:hover {
    transform: translateX(5px);
    background: rgba(255, 107, 53, 0.2);
}

.specialty-item i {
    color: var(--primary);
}

.quote {
    border-left: 5px solid var(--primary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

/* ====================
   PLANS SECTION - CARDS ÉPICAS
==================== */
.plans-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

[data-bs-theme="dark"] .plans-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .title-part-1 {
    color: var(--text-dark);
}

.section-title .title-part-2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.plan-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: none;
    box-shadow: var(--shadow-lg);
    background: white;
}

[data-bs-theme="dark"] .plan-card {
    background: var(--secondary);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.plan-card.bronze::before {
    background: var(--gradient-bronze);
}

.plan-card.silver::before {
    background: var(--gradient-silver);
}

.plan-card.gold::before {
    background: var(--gradient-gold);
}

.plan-card.online::before {
    background: var(--gradient-accent);
}

.plan-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-xl);
}

.plan-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.plan-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bronze .plan-icon i {
    background: var(--gradient-bronze);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.silver .plan-icon i {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold .plan-icon i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.online .plan-icon i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-frequency {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-body {
    padding: 1rem 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--success);
}

.plan-price {
    text-align: center;
    margin: 2rem 0;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.bronze .plan-price .price {
    color: var(--bronze);
}

.silver .plan-price .price {
    color: var(--silver);
}

.gold .plan-price .price {
    color: var(--gold);
}

.online .plan-price .price {
    color: var(--accent);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-description {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin: 1rem 0;
}

.plan-footer {
    padding: 1rem 2rem 2rem;
}

.btn-plan-select {
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bronze .btn-plan-select {
    background: var(--gradient-bronze);
    color: white;
}

.silver .btn-plan-select {
    background: var(--gradient-silver);
    color: var(--text-dark);
}

.gold .btn-plan-select {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.online .btn-plan-select {
    background: var(--gradient-accent);
    color: white;
}

.btn-plan-select:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cta-text i {
    color: var(--success);
    font-size: 2rem;
}

/* ====================
   RESULTS SECTION
==================== */
.results-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.result-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px;
    transition: var(--transition);
}

.result-item:hover {
    transform: scale(1.05);
}

.result-image {
    width: 100%;
    height: 100%;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.result-item:hover img {
    transform: scale(1.1);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-slow);
}

.result-item:hover .result-overlay {
    transform: translateY(0);
    opacity: 1;
}

.result-overlay h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====================
   FINAL CTA - MATADOR
==================== */
.final-cta {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature i {
    color: var(--accent);
    font-size: 1.3rem;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ====================
   FOOTER PREMIUM
==================== */
.footer {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-brand h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-contact h4,
.footer-payment h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--accent);
}

.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-cta i {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-quote {
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
}

/* ====================
   MODAL ÉPICO
==================== */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--gradient-dark);
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.modal-icon i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-text {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 0.9;
}

.modal-note {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ====================
   RESPONSIVIDADE
==================== */
@media (max-width: 992px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
    }
    
    .floating-card {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title-main {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .specialties {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2.2rem;
    }
    
    .plan-name {
        font-size: 2rem;
    }
    
    .plan-price .price {
        font-size: 2.5rem;
    }
}

/* ====================
   ANIMAÇÕES EXTRAS
==================== */
@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shine-text {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
}

/* ====================
   LOADING SUAVE
==================== */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====================
   SCROLLBAR ESTILIZADA
==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ====================
   EFEITOS DE FOCO
==================== */
:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* ====================
   UTILITIES EXTRAS
==================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-glow {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ====================
   PARTICLES (OPCIONAL)
==================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ====================
   FINAL TOUCHES
==================== */
::selection {
    background: var(--primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    position: relative;
    z-index: 2;
}

/* ====================
   ANIMAÇÃO DE ENTRADA
==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ====================
   EBOOK CARD - CHAMATIVO
==================== */
.ebook-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 30px;
    padding: 3rem;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ebook-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ebook-image {
    position: relative;
    z-index: 2;
}

.ebook-image img {
    max-height: 300px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.ebook-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.ebook-content {
    position: relative;
    z-index: 2;
}

.ebook-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ebook-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.ebook-title .text-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ebook-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.ebook-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.ebook-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.ebook-features i {
    color: var(--accent);
    font-size: 1.2rem;
}

.ebook-price {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.btn-ebook {
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-ebook:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .ebook-card {
        padding: 2rem;
    }
    
    .ebook-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .btn-ebook {
        width: 100%;
    }
}
/* ====================
   COOKIE CONSENT BANNER
==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    border-top: 3px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--primary);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.2s;
}

/* Modal de cookies */
#cookieModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#cookieModal .modal-header {
    border-bottom: 2px solid var(--gray-200);
    padding: 1.5rem;
}

#cookieModal .modal-title {
    font-weight: 700;
    color: var(--primary);
}

#cookieModal .modal-body {
    padding: 1.5rem;
}

.cookie-option {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

[data-bs-theme="dark"] .cookie-option {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.cookie-option h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-option small {
    color: var(--text-tertiary);
}

.cookie-option .badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
}

.cookie-option .form-switch {
    margin: 0;
}

.cookie-option .form-check-input {
    width: 2.5rem;
    height: 1.25rem;
    cursor: pointer;
}

.cookie-option .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

#cookieModal .modal-footer {
    border-top: 2px solid var(--gray-200);
    padding: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}