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

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background: #0A0B14;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Base */
.min-h-screen {
    min-height: 100vh;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-white {
    color: white;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Background */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.direcaoesentido.com.br/wp-content/uploads/2025/04/lboD3lq0r4NhKRlibWo5G-scaled.png?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.2;
    z-index: -1;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 1.5rem 1.5rem;
    }
}

.nav-content {
    max-width: 72rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 1rem 1.5rem;
    background: rgba(10, 11, 20, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .nav-content {
        padding: 0.75rem 1.5rem;
    }
}

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

.nav-logo img {
    height: 2rem;
    width: auto;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #16a34a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
    .whatsapp-btn {
        display: flex;
    }
}

.whatsapp-btn:hover {
    background: #15803d;
}

.whatsapp-btn .w-4 {
    width: 1rem;
    height: 1rem;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn .w-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: white;
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #16a34a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.mobile-whatsapp-btn:hover {
    background: #15803d;
}

.mobile-whatsapp-btn .w-4 {
    width: 1rem;
    height: 1rem;
}

/* Offer Banner */
.offer-banner {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    padding: 0 1rem;
    width: 100%;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .offer-banner {
        top: 6rem;
    }
}

.offer-banner-content {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .offer-banner-content {
        padding: 0.75rem 1.5rem;
    }
}

.offer-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

@media (min-width: 640px) {
    .offer-banner-inner {
        gap: 1rem;
        font-size: 0.875rem;
    }
}

.offer-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #f87171;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .countdown {
        gap: 0.5rem;
    }
}

.countdown-item {
    background: #dc2626;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .countdown-item {
        padding: 0.25rem 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 10rem 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 12rem 2rem 6rem 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .hero-grid {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero-content {
    order: 2;
    height: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 1;
    }
}

.hero-card {
    height: 100%;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-card {
        padding: 3rem;
    }
}

.hero-card-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Badge de Urgência */
.urgency-badge {
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: inline-block;
    width: fit-content;
}

@media (min-width: 640px) {
    .urgency-badge {
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
    }
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .rating {
        margin-bottom: 2rem;
    }
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.star {
    width: 0.75rem;
    height: 0.75rem;
    color: #f59e0b;
}

@media (min-width: 640px) {
    .star {
        width: 1rem;
        height: 1rem;
    }
}

.rating-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Headlines */
.hero-headline {
    font-size: clamp(1.875rem, 6vw, 3.75rem);
    color: white;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-green {
    color: #4ade80;
}

.text-blue {
    color: #60a5fa;
}

.text-red {
    color: #f87171;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1rem;
    height: 1rem;
    color: #4ade80;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .benefit-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.benefit-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        margin-bottom: 3rem;
    }
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #16a34a;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
    .primary-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.primary-btn:hover {
    background: #15803d;
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .secondary-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .btn-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.btn-arrow {
    width: 0.75rem;
    height: 0.75rem;
}

@media (min-width: 640px) {
    .btn-arrow {
        width: 1rem;
        height: 1rem;
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    margin-top: auto;
}

@media (min-width: 640px) {
    .social-proof {
        justify-content: flex-start;
        gap: 2rem;
    }
}

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

.proof-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .proof-number {
        font-size: 1.5rem;
    }
}

.proof-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Image */
.hero-image {
    position: relative;
    order: 1;
    height: 100%;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 2;
    }
}

.hero-image-card {
    height: 100%;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .hero-image-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-image-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-image-card {
        padding: 3rem;
    }
}

.hero-image-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Badge de Status */
.status-badge {
    margin-bottom: 1rem;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    width: fit-content;
}

@media (min-width: 640px) {
    .status-badge {
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
    }
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-right: 0.5rem;
}

/* Image Container */
.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    flex: 1;
}

.hero-image-img {
    width: 100%;
    height: 18.75rem;
    object-fit: cover;
}

@media (min-width: 640px) {
    .hero-image-img {
        height: 25rem;
    }
}

@media (min-width: 1024px) {
    .hero-image-img {
        height: 31.25rem;
    }
}

@media (min-width: 1280px) {
    .hero-image-img {
        height: 37.5rem;
    }
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Bottom Stats */
.bottom-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .bottom-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-number {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Success Indicators */
.success-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .success-indicators {
        justify-content: flex-start;
        gap: 2rem;
        margin-top: 2rem;
    }
}

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

.indicator-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .indicator-number {
        font-size: 1.5rem;
    }
}

.indicator-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Experience Section */
.experience-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .experience-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .experience-section {
        padding: 5rem 2rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-badge {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .section-badge {
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
    }
}

.experience-badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
}

@media (min-width: 640px) {
    .badge-icon {
        width: 1rem;
        height: 1rem;
    }
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    color: white;
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .experience-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .experience-stats {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

.stat-card-blue,
.stat-card-green,
.stat-card-purple,
.stat-card-amber {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .stat-card-blue,
    .stat-card-green,
    .stat-card-purple,
    .stat-card-amber {
        padding: 2rem;
    }
}

.stat-card-blue:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.stat-card-green:hover {
    border-color: rgba(74, 222, 128, 0.3);
}

.stat-card-purple:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-card-amber:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-card-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .stat-card-number {
        font-size: 3rem;
    }
}

.stat-card-blue .stat-card-number {
    color: #60a5fa;
}

.stat-card-green .stat-card-number {
    color: #4ade80;
}

.stat-card-purple .stat-card-number {
    color: #a855f7;
}

.stat-card-amber .stat-card-number {
    color: #fbbf24;
}

.stat-card-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem auto;
    color: #fbbf24;
}

@media (min-width: 640px) {
    .stat-card-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Detailed Experience */
.detailed-experience {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .detailed-experience {
        padding: 3rem;
    }
}

.detailed-experience-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 640px) {
    .detailed-experience-content {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .detailed-experience-content {
        grid-template-columns: 1fr 1fr;
    }
}

.detailed-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .detailed-title {
        font-size: 1.875rem;
    }
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.expertise-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.expertise-content {
    flex: 1;
}

.expertise-title {
    color: white;
    font-weight: 500;
}

.expertise-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.detailed-experience-image {
    position: relative;
}

.experience-img {
    width: 100%;
    height: 18.75rem;
    object-fit: cover;
    border-radius: 1rem;
}

@media (min-width: 640px) {
    .experience-img {
        height: 25rem;
    }
}

.experience-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    pointer-events: none;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Problems Section */
.problems-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .problems-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .problems-section {
        padding: 5rem 2rem;
    }
}

.problems-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.problem-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .problem-card {
        padding: 2rem;
    }
}

.problem-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.problem-icon-red {
    width: 3rem;
    height: 3rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.problem-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #f87171;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.problem-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
}

/* Solution Card */
.solution-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .solution-card {
        padding: 3rem;
    }
}

.solution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .solution-title {
        font-size: 1.875rem;
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.solution-item {
    text-align: center;
}

.solution-icon-green,
.solution-icon-blue,
.solution-icon-purple,
.solution-icon-amber {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 1px solid;
}

.solution-icon-green {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.solution-icon-blue {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.solution-icon-purple {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.solution-icon-amber {
    background: rgba(217, 119, 6, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.solution-icon {
    width: 2rem;
    height: 2rem;
}

.solution-icon-green .solution-icon {
    color: #4ade80;
}

.solution-icon-blue .solution-icon {
    color: #60a5fa;
}

.solution-icon-purple .solution-icon {
    color: #a855f7;
}

.solution-icon-amber .solution-icon {
    color: #fbbf24;
}

.solution-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.solution-item-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Results Section */
.results-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .results-section {
        padding: 0 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .results-section {
        padding: 0 2rem 6rem 2rem;
    }
}

.results-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .results-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .results-card {
        padding: 4rem;
    }
}

.results-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
    background-image: url('https://www.direcaoesentido.com.br/wp-content/uploads/2025/04/lboD3lq0r4NhKRlibWo5G-scaled.png?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.results-content {
    position: relative;
    z-index: 10;
}

.results-badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cases-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.case-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .case-card {
        padding: 2rem;
    }
}

.case-card-wide {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .case-card-wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .case-card-wide {
        grid-column: span 1;
    }
}

.case-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-icon-green,
.case-icon-blue,
.case-icon-purple {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid;
}

.case-icon-green {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.case-icon-blue {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.case-icon-purple {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.case-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.case-icon-green .case-icon {
    color: #4ade80;
}

.case-icon-blue .case-icon {
    color: #60a5fa;
}

.case-icon-purple .case-icon {
    color: #a855f7;
}

.case-info {
    flex: 1;
}

.case-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.case-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4ade80;
}

.case-role-blue {
    color: #60a5fa;
}

.case-role-purple {
    color: #a855f7;
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.case-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.case-testimonial {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.case-testimonial-blue {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.case-testimonial-purple {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.testimonial-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4ade80;
}

.testimonial-text-blue {
    color: #60a5fa;
}

.testimonial-text-purple {
    color: #a855f7;
}

.results-disclaimer {
    text-align: center;
    margin-top: 3rem;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Modules Section */
.modules-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .modules-section {
        padding: 0 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .modules-section {
        padding: 0 2rem 6rem 2rem;
    }
}

.modules-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .modules-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .modules-card {
        padding: 4rem;
    }
}

.modules-badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.module-card {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .module-card {
        padding: 1.5rem;
    }
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.module-number {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.module-number-blue {
    background: #2563eb;
}

.module-number-green {
    background: #16a34a;
}

.module-number-purple {
    background: #9333ea;
}

.module-number-red {
    background: #dc2626;
}

.module-number-yellow {
    background: #ca8a04;
}

.module-number-indigo {
    background: #4f46e5;
}

.module-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.module-title-blue {
    color: #60a5fa;
}

.module-title-green {
    color: #4ade80;
}

.module-title-purple {
    color: #a855f7;
}

.module-title-red {
    color: #f87171;
}

.module-title-yellow {
    color: #fbbf24;
}

.module-title-indigo {
    color: #818cf8;
}

.module-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.module-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Pricing Section */
.pricing-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .pricing-section {
        padding: 0 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-section {
        padding: 0 2rem 6rem 2rem;
    }
}

.pricing-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .pricing-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .pricing-card {
        padding: 4rem;
    }
}

.pricing-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.price-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 640px) {
    .price-card {
        padding: 2rem;
    }
}

.price-card-featured {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.price-card-orange {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.price-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.price-badge-purple {
    background: rgba(147, 51, 234, 0.2);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.price-badge-orange {
    background: rgba(234, 88, 12, 0.2);
    color: #fb923c;
    border-color: rgba(249, 115, 22, 0.3);
}

.price-content {
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .price-content {
        margin-bottom: 2rem;
    }
}

.price-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .price-subtitle {
        margin-bottom: 1.5rem;
    }
}

.price-old {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-old-value {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

@media (min-width: 640px) {
    .price-old-value {
        font-size: 1.5rem;
    }
}

.price-discount {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-value {
    font-size: 1.875rem;
    color: white;
    font-weight: 700;
}

@media (min-width: 640px) {
    .price-value {
        font-size: 2.25rem;
    }
}

.price-installment {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.price-consult {
    font-size: 1.25rem;
    color: #fb923c;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .price-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .price-btn {
        padding: 1rem;
    }
}

.price-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.price-btn-blue {
    background: #2563eb;
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.price-btn-blue:hover {
    background: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.5);
}

.price-btn-purple {
    background: #9333ea;
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.price-btn-purple:hover {
    background: #7c3aed;
    border-color: rgba(168, 85, 247, 0.5);
}

.price-btn-orange {
    background: #ea580c;
    color: white;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.price-btn-orange:hover {
    background: #c2410c;
    border-color: rgba(249, 115, 22, 0.5);
}

/* Guarantee */
.guarantee {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .guarantee {
        margin-top: 3rem;
    }
}

.guarantee-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
    border-radius: 0.5rem;
}

@media (min-width: 640px) {
    .guarantee-content {
        padding: 1rem 1.5rem;
    }
}

.guarantee-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .guarantee-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.guarantee-text {
    text-align: left;
}

.guarantee-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .guarantee-title {
        font-size: 1rem;
    }
}

.guarantee-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
    .guarantee-subtitle {
        font-size: 0.875rem;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .faq-section {
        padding: 0 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 0 2rem 6rem 2rem;
    }
}

.faq-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .faq-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .faq-card {
        padding: 4rem;
    }
}

.faq-badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-list {
        gap: 1.5rem;
    }
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    cursor: pointer;
    padding: 1rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    list-style: none;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.5rem 2rem;
    }
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .faq-question span {
        font-size: 1.125rem;
    }
}

.faq-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

details[open] .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1rem 1.5rem;
}

@media (min-width: 640px) {
    .faq-answer {
        padding: 0 2rem 1.5rem 2rem;
    }
}

.faq-answer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
}

@media (min-width: 640px) {
    .faq-answer p {
        font-size: 1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .final-cta-section {
        padding: 0 1.5rem 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-section {
        padding: 0 2rem 6rem 2rem;
    }
}

.final-cta-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .final-cta-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-card {
        padding: 4rem;
    }
}

.final-cta-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 32rem;
    margin: 0 auto 2rem auto;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
        margin-bottom: 2.5rem;
    }
}

.final-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: #16a34a;
    color: white;
    font-weight: 700;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
    .final-cta-btn {
        width: auto;
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
    }
}

.final-cta-btn:hover {
    background: #15803d;
}

.final-cta-guarantee {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .final-cta-guarantee {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
}

/* Footer */
.footer-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

@media (min-width: 640px) {
    .footer-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-section {
        padding: 0 2rem 3rem 2rem;
    }
}

.footer-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@media (min-width: 640px) {
    .footer-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-card {
        padding: 4rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-company {
        grid-column: span 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .footer-logo {
        margin-bottom: 1.5rem;
    }
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-description {
        margin-bottom: 2rem;
    }
}

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

@media (min-width: 640px) {
    .footer-stats {
        gap: 1.5rem;
    }
}

.footer-stat {
    text-align: center;
}

.footer-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .footer-stat-number {
        font-size: 1.5rem;
    }
}

.footer-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .footer-links-title {
        margin-bottom: 1.5rem;
    }
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-links-list {
        gap: 1rem;
    }
}

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

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

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-whatsapp-icon {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        padding-top: 2rem;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
    .footer-bottom-links {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
    }
}

.footer-copyright {
    white-space: nowrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #16a34a;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
    .footer-contact-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

.footer-contact-btn:hover {
    background: #15803d;
}

/* Utilities */
.hidden {
    display: none;
}

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

/* Responsive utilities */
@media (max-width: 639px) {
    .hidden {
        display: none !important;
    }
    
    .sm\\:flex {
        display: flex !important;
    }
}

@media (min-width: 640px) {
    .sm\\:inline {
        display: inline !important;
    }
}

/* === PATCH: ajustes específicos desta landing === */

/* Espaçamento do CTA no hero */
.cta-buttons { margin-top: 2.5rem; }

/* Círculos numerados reutilizados em várias seções */
.num-circle {
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; flex:0 0 32px; border-radius:999px;
  font-size:.9rem; font-weight:700; color:#fff;
  box-shadow:0 0 0 1px rgba(255,255,255,.16) inset;
}
.num-red{background:rgba(239,68,68,.9)}
.num-green{background:rgba(16,185,129,.9)}
.num-blue{background:rgba(59,130,246,.9)}
.num-purple{background:rgba(139,92,246,.9)}
.num-amber{background:rgba(245,158,11,.9)}
.num-indigo{background:rgba(79,70,229,.9)}

.problem-header,.solution-step-header,.module-header,.case-header{
  display:flex; align-items:center; gap:.75rem;
}

/* Aplicação: ocupar bem a largura da seção e centralizar os cards */
.application-grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem; align-items:stretch; justify-items:stretch;
}
@media (max-width:1024px){ .application-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:640px){ .application-grid{grid-template-columns:1fr;} }

/* Visual dos cards de aplicação – coerente com .problem-card/.module-card */
.application-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:1rem;
}

/* Grid de preços (Pacotes) mantendo 3→2→1 colunas */
.pricing-grid{display:grid;gap:1.25rem;grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width:1024px){.pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){.pricing-grid{grid-template-columns:1fr;}}

/* Nossa Solução: usar o mesmo layout/visual dos módulos */
.solution-card .solutions-grid{display:grid;gap:1.25rem;grid-template-columns:repeat(2,minmax(0,1fr));}
@media (max-width:1024px){.solution-card .solutions-grid{grid-template-columns:1fr;}}
/* Garante que .solution-item herde o look de .module-card */
.solution-item { border:1px solid rgba(255,255,255,.08); border-radius:14px; background:rgba(255,255,255,.03); padding:1rem; }
