/* BandaPro Landing Page Styles */

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

:root {
    --primary: #964cb4;
    --primary-dark: #4f2b6f;
    --bg-dark: #0d0a14;
    --bg-darker: #07050e;
    --bg-card: #120d1e;
    --text-light: #f1f5f9;
    --text-gray: #9d8fb0;
    --border: #2a1a3e;
    --border-glow: rgba(150, 76, 180, 0.25);
    --glow-soft: rgba(150, 76, 180, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
}

/* Ambient glow — luz de palco roxa no fundo */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 80vh;
    background: radial-gradient(ellipse at center,
        rgba(150, 76, 180, 0.12) 0%,
        rgba(79, 43, 111, 0.06) 45%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Override browser default blue — all interactive elements use purple */
a {
    color: var(--text-gray);
    text-decoration: none;
}

a:hover {
    color: var(--text-light);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

input,
textarea {
    accent-color: var(--primary);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(150, 76, 180, 0.15) !important;
}

::selection {
    background: rgba(150, 76, 180, 0.3);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(7, 5, 14, 0.85);
    border-bottom: 1px solid var(--border-glow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-light);
}

.btn-login {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(150, 76, 180, 0.3);
}

/* Hero */
.hero {
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a0a2e 0%, var(--bg-darker) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1920&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    opacity: 0.18;
    z-index: 0;
}

/* Vinheta nas bordas do hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(150, 76, 180, 0.2) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(7,5,14,0.3) 0%, transparent 30%, rgba(7,5,14,0.7) 100%);
    z-index: 0;
    pointer-events: none;
}

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

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0b8f0 40%, #964cb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 48px;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(150, 76, 180, 0.4);
}

.hero-note {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Screenshots Carousel */
.screenshots-carousel {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.screenshot-item {
    min-width: 100%;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.screenshot-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(150, 76, 180, 0.9);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Features */
.features {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0e0818 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.06;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

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

.feature-card {
    background: rgba(18, 13, 30, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(150, 76, 180, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(150, 76, 180, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #0e0818 0%, var(--bg-darker) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 50%;
    background: radial-gradient(ellipse at center bottom,
        rgba(150, 76, 180, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: rgba(18, 13, 30, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(150, 76, 180, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(150, 76, 180, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-price {
    margin: 24px 0;
}

.currency {
    font-size: 24px;
    vertical-align: top;
}

.price {
    font-size: 48px;
    font-weight: 700;
}

.period {
    font-size: 18px;
    color: var(--text-gray);
}

.price-soon {
    font-size: 32px;
    color: var(--text-gray);
}

.pricing-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li span {
    color: var(--text-gray);
    flex: 1;
}

.pricing-features li span em {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.feature-yes svg {
    color: #964cb4;
    flex-shrink: 0;
    background: rgba(150, 76, 180, 0.12);
    border-radius: 50%;
    padding: 2px;
    width: 20px;
    height: 20px;
}

.feature-no svg {
    color: #4a3a5a;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.feature-no span {
    color: #4a3a5a !important;
    text-decoration: line-through;
    text-decoration-color: #3a2a4a;
}

/* X icon (negated features) — muted, not blue */
.pricing-features li:has(path[d*="M6 18L18"]) svg {
    color: var(--text-gray);
}

.pricing-plan-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.pricing-highlight {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.featured-highlight {
    background: rgba(150, 76, 180, 0.1);
    border-color: rgba(150, 76, 180, 0.3);
    color: #c084d4;
}

.pricing-footer {
    margin-top: 48px;
    text-align: center;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(150, 76, 180, 0.08);
    border: 1px solid rgba(150, 76, 180, 0.2);
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-note svg {
    color: #964cb4;
    flex-shrink: 0;
}

.btn-pricing-soon {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-gray) !important;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(150, 76, 180, 0.3);
}

.btn-pricing:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
}

/* Contact */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0e0818 100%);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.07;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

/* Split layout */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Info side */
.contact-info {
    padding-top: 8px;
}

.contact-info-badge {
    display: inline-block;
    background: rgba(150, 76, 180, 0.15);
    border: 1px solid rgba(150, 76, 180, 0.3);
    color: #c084d4;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.contact-info-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0b8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-trust-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(150, 76, 180, 0.1);
    border: 1px solid rgba(150, 76, 180, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084d4;
    flex-shrink: 0;
}

.contact-trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-trust-item span {
    font-size: 13px;
    color: var(--text-gray);
}

/* Form side */
.contact-form-wrapper {
    background: rgba(18, 13, 30, 0.85);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Floating label fields */
.form-field {
    position: relative;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
    transition: color 0.2s;
    z-index: 1;
}

.input-icon-textarea {
    top: 18px;
    transform: none;
}

.input-icon-wrap input,
.input-icon-wrap textarea {
    width: 100%;
    background: rgba(7, 5, 14, 0.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px 8px 44px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    resize: none;
}

.input-icon-wrap textarea {
    padding-top: 24px;
    min-height: 130px;
}

.input-icon-wrap label {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
}

.textarea-wrap label {
    top: 18px;
    transform: none;
}

/* Floating label — sobe quando preenchido ou focado */
.input-icon-wrap input:focus ~ label,
.input-icon-wrap input:not(:placeholder-shown) ~ label,
.input-icon-wrap textarea:focus ~ label,
.input-icon-wrap textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c084d4;
}

.textarea-wrap input:focus ~ label,
.textarea-wrap textarea:focus ~ label,
.textarea-wrap textarea:not(:placeholder-shown) ~ label {
    top: 6px;
}

/* Focus state */
.input-icon-wrap input:focus,
.input-icon-wrap textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(7, 5, 14, 0.9);
    box-shadow: 0 0 0 3px rgba(150, 76, 180, 0.12);
}

.input-icon-wrap:focus-within .input-icon {
    color: #c084d4;
}

/* Submit button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-submit .btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(150, 76, 180, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-gray);
    justify-content: center;
}

.form-privacy-note svg {
    flex-shrink: 0;
    color: #c084d4;
}

/* Responsive contact */
@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Footer */
.footer {
    background: #07050e;
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Desabilitar parallax no mobile para melhor performance */
    .hero::before,
    .features::before,
    .contact::before {
        background-attachment: scroll;
    }

    /* Carousel mobile adjustments */
    .screenshots-carousel {
        margin-top: 40px;
    }

    .screenshot-label {
        font-size: 12px;
        padding: 6px 16px;
        bottom: 10px;
    }

    .carousel-dots {
        margin-top: 15px;
    }
}

/* Modules Section */
.modules {
    padding: 120px 0;
    background: linear-gradient(180deg, #0e0818 0%, var(--bg-darker) 100%);
}

.modules-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-item {
    background: rgba(18, 13, 30, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
}

.module-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(150, 76, 180, 0.12);
}

.module-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.module-header:hover {
    background: rgba(150, 76, 180, 0.05);
}

.module-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
}

.module-icon {
    width: 44px;
    height: 44px;
    background: rgba(150, 76, 180, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.module-chevron {
    color: var(--text-gray);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.module-item.open .module-chevron {
    transform: rotate(180deg);
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.module-item.open .module-body {
    max-height: 400px;
    padding: 0 24px 24px;
}

.module-features-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
}

.module-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .module-header-left {
        font-size: 15px;
        gap: 12px;
    }

    .module-icon {
        width: 36px;
        height: 36px;
    }

    .module-header {
        padding: 16px 18px;
    }

    .module-body {
        padding: 0 18px;
    }

    .module-item.open .module-body {
        padding: 0 18px 20px;
    }
}

/* ============================================
   Hamburger & Mobile Menu
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(150, 76, 180, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(150, 76, 180, 0.2);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animação X ao abrir */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 98;
    animation: fadeIn 0.2s ease;
}

.mobile-overlay.active {
    display: block;
}

/* Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #0d0a14;
    border-left: 1px solid var(--border-glow);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(150, 76, 180, 0.1);
    color: var(--text-light);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-btn-login {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid var(--border-glow);
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
    text-decoration: none;
}

.mobile-btn-login:hover {
    background: rgba(150, 76, 180, 0.1);
}

.mobile-btn-primary {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}

.mobile-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
