/* ============================================
   TEMA 2: ENERGIA — Moderno & Dinâmico
   1Marcha v2.0
   ============================================ */

:root {
    --primary: #29B5E8;
    --primary-dark: #1E88E5;
    --purple: #7C3AED;
    --purple-light: #A855F7;
    --success: #10B981;
    --warning: #F59E0B;
    --dark: #0F172A;
    --dark-blue: #1E3A8A;
    --text: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 40%, #29B5E8 100%);
    --gradient-primary: linear-gradient(135deg, #29B5E8 0%, #1E88E5 100%);
    --gradient-purple: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(41,181,232,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(124,58,237,0.08);
    box-shadow: 0 2px 20px rgba(124,58,237,0.06);
    padding: 0.75rem 0;
}

.navbar-brand img { height: 36px; width: auto; }

.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--purple) !important;
    background: rgba(124,58,237,0.05);
}

/* Botão Cadastre-se no Navbar */
.btn-nav-cadastre {
    background: var(--gradient-warm);
    color: white !important;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(245,158,11,0.3);
}

.btn-nav-cadastre:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245,158,11,0.5);
    color: white !important;
}

.btn-nav-cta {
    background: var(--gradient-hero);
    color: white !important;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(124,58,237,0.3);
    color: white !important;
}

/* ===== HERO ===== */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(41,181,232,0.4), transparent);
    bottom: -100px; left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(168,85,247,0.3), transparent);
    top: 50%; left: 40%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.gradient-text {
    background: linear-gradient(135deg, #F59E0B, #EF4444, #F59E0B);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-text {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-hero-primary {
    background: white;
    color: var(--dark-blue);
    border: none;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--dark-blue);
}

.btn-hero-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.hero-store-badges a { margin-right: 0.75rem; }
.hero-store-badges img { border-radius: 8px; }

/* Floating Cards */
.hero-cards-stack {
    position: relative;
    height: 400px;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 260px;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.floating-card i { font-size: 1.5rem; }
.floating-card strong { display: block; font-size: 0.95rem; }
.floating-card small { display: block; font-size: 0.8rem; opacity: 0.8; }

.text-purple { color: #A855F7; }
.text-primary { color: #29B5E8 !important; }
.text-success { color: #10B981 !important; }
.text-warning { color: #F59E0B !important; }

.card-float-1 { top: 0; left: 10%; animation: floatCard 6s ease-in-out infinite; }
.card-float-2 { top: 100px; right: 0; animation: floatCard 7s ease-in-out infinite 1s; }
.card-float-3 { top: 200px; left: 5%; animation: floatCard 8s ease-in-out infinite 0.5s; }
.card-float-4 { top: 300px; right: 5%; animation: floatCard 6.5s ease-in-out infinite 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-stat i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.trust-stat span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.trust-stat small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== SECTIONS ===== */
.section-padding { padding: 90px 0; }

.bg-gradient-light {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.section-header { margin-bottom: 1rem; }

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(41,181,232,0.1));
    color: var(--purple);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-v2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== PERSONA CARDS ===== */
.persona-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.persona-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
}

.persona-cfc::after { background: var(--gradient-purple); }
.persona-instrutor::after { background: var(--gradient-primary); }
.persona-aluno::after { background: var(--gradient-success); }

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.persona-cfc:hover { border-color: var(--purple); }
.persona-instrutor:hover { border-color: var(--primary); }
.persona-aluno:hover { border-color: var(--success); }

.persona-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.persona-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.persona-icon {
    width: 80px; height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 2rem;
}

.persona-cfc .persona-icon { background: var(--gradient-purple); }
.persona-instrutor .persona-icon { background: var(--gradient-primary); }
.persona-aluno .persona-icon { background: var(--gradient-success); }

.persona-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.persona-tagline {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.persona-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pf-item {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pf-item i { color: var(--success); font-size: 0.85rem; }

.btn-persona {
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-persona-cfc {
    background: var(--gradient-purple);
    color: white;
}

.btn-persona-cfc:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
    color: white;
}

.btn-persona-instrutor {
    background: var(--gradient-primary);
    color: white;
}

.btn-persona-instrutor:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41,181,232,0.4);
    color: white;
}

.btn-persona-aluno {
    background: var(--gradient-success);
    color: white;
}

.btn-persona-aluno:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
    color: white;
}

/* ===== CTA CADASTRE-SE MEIO ===== */
.cta-cadastre-mid {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 50%, #F59E0B 100%);
    background-size: 200% auto;
    animation: shimmerBg 4s linear infinite;
    color: white;
    padding: 60px 0;
    text-align: center;
}

@keyframes shimmerBg {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.cta-cadastre-mid h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.cta-cadastre-mid p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.btn-cadastre-mid {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #EF4444;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cadastre-mid:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #EF4444;
}

/* ===== TIMELINE STEPS ===== */
.timeline-step {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.timeline-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.timeline-step.active {
    border-color: var(--purple);
    box-shadow: 0 8px 30px rgba(124,58,237,0.15);
}

.timeline-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.timeline-step h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ===== CATEGORY CARDS ===== */
.cat-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cat-popular {
    border-color: var(--purple);
    box-shadow: 0 8px 30px rgba(124,58,237,0.12);
}

.cat-popular-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gradient-purple);
    color: white;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
}

.cat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cat-card h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cat-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== SERVICE CARDS ===== */
.svc-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: inherit;
}

.svc-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.svc-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.svc-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.svc-badge {
    display: inline-block;
    background: var(--gradient-warm);
    color: white;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: var(--gradient-hero);
    color: white;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(168,85,247,0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(41,181,232,0.2) 0%, transparent 50%);
}

.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    position: relative; z-index: 2;
}

.cta-final p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative; z-index: 2;
}

.cta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    position: relative; z-index: 2;
}

.cta-option {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: white;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
}

.cta-option:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
    color: white;
}

.cta-option i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.cta-option strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cta-option small {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Botão Cadastre-se no CTA Final */
.btn-cadastre-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-cadastre-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245,158,11,0.6);
    color: white;
}

/* ===== FOOTER ===== */
.footer-v2 {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; }

.footer-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.social-links a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.social-links a:hover {
    color: white;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Botão Cadastre-se no Footer */
.btn-footer-cadastre {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(245,158,11,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-footer-cadastre:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,158,11,0.5);
    color: white;
}

.footer-login-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-login-link:hover {
    color: white;
}

.footer-login-link strong {
    color: var(--primary);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-badges {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS (for inner pages) ===== */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.content-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Feature list for inner pages */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
}

/* Info cards for inner pages */
.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== PRICING BUTTONS ===== */
.btn-plan {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-plan-basic {
    background: var(--gradient-primary);
    color: white;
}

.btn-plan-basic:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41,181,232,0.4);
    color: white;
}

.btn-plan-pro {
    background: var(--gradient-purple);
    color: white;
}

.btn-plan-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
    color: white;
}

.btn-plan-premium {
    background: var(--gradient-warm);
    color: white;
}

.btn-plan-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    color: white;
}

/* ===== GENERIC BUTTONS (Bootstrap overrides) ===== */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41,181,232,0.4);
    color: white !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41,181,232,0.4);
}

.btn-success {
    background: var(--gradient-success) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
    color: white !important;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: white !important;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: white !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--gradient-warm) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    color: white !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title-v2 { font-size: 2rem; }
    .cta-final h2 { font-size: 2rem; }
    .cta-cadastre-mid h2 { font-size: 1.8rem; }
    .hero-section { min-height: auto; }
    .page-hero h1 { font-size: 2.2rem; }
    .btn-nav-cadastre { padding: 0.4rem 1rem; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 110px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-text { font-size: 1rem; }
    .section-padding { padding: 60px 0; }
    .section-title-v2 { font-size: 1.7rem; }
    .btn-hero-primary, .btn-hero-ghost {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .cta-grid { flex-direction: column; align-items: center; }
    .cta-option { width: 100%; max-width: 300px; }
    .cta-cadastre-mid { padding: 40px 0; }
    .cta-cadastre-mid h2 { font-size: 1.5rem; }
    .btn-cadastre-mid { padding: 0.8rem 2rem; font-size: 1rem; }
    .btn-cadastre-cta { padding: 0.8rem 2rem; font-size: 1rem; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }
    .navbar .btn-nav-cadastre,
    .navbar .btn-nav-cta {
        width: 100%;
        text-align: center;
        margin: 0.25rem 0;
    }
}
