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

:root {
    --primary: #0f172a;
    --primary-dark: #020617;
    --secondary: #f59e0b;
    --accent: #d97706;
    --success: #10b981;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --gradient-start: #0f172a;
    --gradient-end: #334155;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Melhorias para touch em mobile */
a, button, .package-button, .subscription-button, .cta-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

/* Videos Section */
.videos-section {
    padding: 80px 20px;
    background: var(--white);
}

.pioneer-highlight {
    margin: 40px auto 60px;
    max-width: 800px;
    padding: 40px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 16px;
    border-left: 6px solid var(--secondary);
    text-align: center;
}

.pioneer-highlight h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.pioneer-highlight p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
}

.pioneer-highlight a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pioneer-highlight a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.video-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px 0;
}

.video-info p {
    color: var(--gray);
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.watch-cta {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.video-card:hover .watch-cta {
    color: var(--accent);
}

.social-proof {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 16px;
    text-align: center;
}

.social-proof p {
    font-size: 1.25rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.7;
}

/* Story Section */
.story {
    padding: 80px 20px;
    background: var(--light-gray);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.story-text {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.story-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.story-text h3:first-child {
    margin-top: 0;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--dark);
    font-weight: 700;
}

.story-disclaimer {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 16px;
    border-left: 6px solid var(--secondary);
}

.story-disclaimer p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

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

/* Packages Section */
.packages {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

/* Urgency Timer */
.urgency-timer {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.timer-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-timer h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.urgency-timer > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.timer-footer {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

.timer-footer strong {
    color: var(--secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.package-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge.vip {
    background: linear-gradient(135deg, var(--primary), var(--dark));
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.package-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-period {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 4px;
}

.package-features {
    margin-bottom: 30px;
}

.feature {
    padding: 12px 0;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
}

.package-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.package-button.primary {
    background: var(--secondary);
}

.package-button.primary:hover {
    background: var(--accent);
}

/* Subscription Section */
.subscription {
    padding: 80px 20px;
    background: var(--white);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.subscription-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--light-gray);
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.subscription-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.subscription-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.subscription-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.subscription-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.subscription-price .price {
    font-size: 2.5rem;
}

.subscription-features {
    margin-bottom: 30px;
}

.subscription-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.subscription-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.subscription-button.primary {
    background: var(--secondary);
}

.subscription-button.primary:hover {
    background: var(--accent);
}

.subscription-note {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    text-align: center;
}

.subscription-note p {
    font-size: 1.1rem;
    color: var(--dark);
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Final */
.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.footer p {
    margin: 8px 0;
    opacity: 0.8;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .videos-grid,
    .packages-grid,
    .subscription-grid {
        grid-template-columns: 1fr;
    }

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

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

    .social-proof p {
        font-size: 1.1rem;
    }

    .story-text {
        padding: 40px 30px;
    }

    .story-text h3 {
        font-size: 1.5rem;
    }

    .story-text p {
        font-size: 1.05rem;
    }

    .story-disclaimer p {
        font-size: 0.95rem;
    }

    .pioneer-highlight {
        padding: 30px 25px;
    }

    .pioneer-highlight h3 {
        font-size: 1.5rem;
    }

    .pioneer-highlight p {
        font-size: 1.05rem;
    }

    .urgency-timer {
        padding: 40px 30px;
    }

    .urgency-timer h3 {
        font-size: 1.75rem;
    }

    .countdown {
        gap: 20px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .price {
        font-size: 2.5rem !important;
    }

    .package-card,
    .subscription-card {
        padding: 30px 20px;
    }

    .story-text {
        padding: 30px 20px;
    }

    .story-text h3 {
        font-size: 1.35rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .pioneer-highlight {
        padding: 25px 20px;
    }

    .pioneer-highlight h3 {
        font-size: 1.35rem;
    }

    .pioneer-highlight p {
        font-size: 1rem;
    }

    .urgency-timer {
        padding: 30px 20px;
    }

    .urgency-timer h3 {
        font-size: 1.5rem;
    }

    .urgency-timer > p {
        font-size: 1rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .timer-footer {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Ajustes extras para mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefit-card h3,
    .video-card h3 {
        font-size: 1.15rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .package-button,
    .subscription-button {
        min-height: 48px; /* Mínimo para touch */
    }
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 20px;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials .section-title {
    text-align: center;
    color: var(--primary);
}

.testimonials .section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 16px auto 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 48px 16px;
    }

    .testimonials-grid {
        gap: 16px;
        margin-top: 24px;
    }
}

/* Arsenal de Ferramentas */
.tools-arsenal {
    padding: 80px 20px;
    background: var(--white);
}

.tools-grid {
    margin-top: 48px;
    display: grid;
    gap: 32px;
}

.tool-category {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--secondary);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-list {
    display: grid;
    gap: 20px;
}

.tool-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.tool-desc {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.beta-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.tools-note {
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.tools-note p {
    margin: 0;
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Tools Visual Grid (Cards com Imagens) */
.tools-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tool-card-visual {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tool-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tool-card-visual:hover .tool-image img {
    transform: scale(1.05);
}

.tool-card-content {
    padding: 24px;
}

.tool-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tool-card-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .tools-arsenal {
        padding: 60px 20px;
    }

    .tools-visual-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .tool-image {
        height: 200px;
    }

    .tool-card-content {
        padding: 20px;
    }

    .tool-card-title {
        font-size: 1.1rem;
    }

    .tool-category {
        padding: 24px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .tool-item {
        padding: 16px;
    }

    .tools-note {
        margin-top: 32px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tools-arsenal {
        padding: 48px 16px;
    }

    .tools-visual-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .tool-image {
        height: 180px;
    }

    .tool-card-content {
        padding: 18px;
    }

    .tool-card-title {
        font-size: 1.05rem;
    }

    .tool-card-desc {
        font-size: 0.9rem;
    }

    .tools-grid {
        gap: 24px;
        margin-top: 32px;
    }

    .tool-category {
        padding: 20px;
    }

    .category-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .tool-name {
        font-size: 1rem;
    }

    .tool-desc {
        font-size: 0.95rem;
    }
}

/* Image Modal (Lightbox) */
.image-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95%;
    max-height: 95vh;
}

.modal-content-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    background: white;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active .modal-content-img {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg) scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.modal-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Zoom Overlay nas imagens */
.tool-image {
    position: relative;
    cursor: pointer;
}

.zoom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-image:hover .zoom-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-content-img {
        max-width: 100%;
        max-height: 80vh;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 36px;
    }

    .modal-caption {
        font-size: 16px;
        padding: 10px 20px;
    }

    .zoom-overlay {
        font-size: 13px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 32px;
    }

    .modal-caption {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 15px;
    }

    .zoom-overlay {
        font-size: 12px;
        padding: 10px;
    }
}

/* Lead Modal */
.lead-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.lead-modal.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lead-modal.active .lead-modal-content {
    transform: scale(1);
}

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

.lead-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.lead-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.lead-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

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

.form-group-lead {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-lead label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group-lead input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--white);
    transition: all 0.2s ease;
}

.form-group-lead input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group-lead input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-note {
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.lead-submit-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.lead-submit-btn:active {
    transform: translateY(0);
}

.lead-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .lead-modal-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .lead-title {
        font-size: 24px;
    }

    .lead-subtitle {
        font-size: 14px;
    }

    .lead-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .lead-modal {
        padding: 16px;
    }

    .lead-modal-content {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .lead-title {
        font-size: 22px;
    }

    .lead-form {
        gap: 16px;
    }

    .form-group-lead input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .lead-submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

/* Tools Checklist */
.tools-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 300px;
    overflow-y: auto;
}

.tools-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tools-section-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.tool-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.tool-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tool-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary);
}

.other-tools-input {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--white);
    width: 100%;
}

.other-tools-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.other-tools-input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
    .tools-checklist {
        max-height: 250px;
        padding: 12px;
    }

    .tool-checkbox {
        font-size: 13px;
        padding: 6px;
    }

    .tools-section-title {
        font-size: 12px;
    }
}
