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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
}

.logo i {
    font-size: 24px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #1e40af;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline {
    padding: 8px 16px;
    border: 2px solid #1e40af;
    background: transparent;
    color: #1e40af;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn-primary {
    padding: 8px 16px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* Special Offer */
.special-offer {
    background: #000000;
    color: #fbbf24;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
    margin-top: 64px;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #f0fdf4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fed7aa;
    color: #9a3412;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #1e40af;
}

.highlight.green {
    color: #16a34a;
}

.highlight.yellow {
    color: #eab308;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.5;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: #10b981;
    font-size: 20px;
}

.benefit-item span {
    font-weight: 600;
    color: #374151;
}

.social-proof {
    background: #f0fdf4;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin-bottom: 32px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars i {
    color: #fbbf24;
    font-size: 16px;
}

.stars span {
    color: #16a34a;
    font-weight: 600;
    margin-left: 8px;
}

.social-proof p {
    color: #16a34a;
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 20px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

.cta-alternative {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0;
}

.btn-cta-secondary {
    background: transparent;
    color: #1e40af;
    padding: 16px 32px;
    border: 2px solid #1e40af;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #eff6ff;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #6b7280;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-dot.green {
    background: #10b981;
}

.indicator-dot.blue {
    background: #3b82f6;
}

.hero-right {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -24px;
   left: -36px;
    background: #dc2626;
    color: white;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.discount-content {
    text-align: center;
}

.discount-number {
    font-size: 24px;
    font-weight: 800;
}

.discount-text {
    font-size: 12px;
    font-weight: 600;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.earnings-simulator {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    padding: 16px;
    border-radius: 12px;
}

.earnings-simulator h3 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.earnings-value {
    font-size: 24px;
    font-weight: 800;
    color: #16a34a;
}

.earnings-description {
    font-size: 14px;
    color: #6b7280;
}

.countdown-section {
    text-align: center;
    margin-top: 48px;
    margin: 0px 0px 50px;
}

.countdown-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.countdown-card h3 {
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 8px;
}

.countdown-timer {
    font-size: 36px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 4px;
}

.countdown-labels {
    font-size: 14px;
    color: #dc2626;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f9fafb;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge.urgent {
    background: #dc2626;
    color: white;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

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

.benefit-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #10b981;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: #bfdbfe;
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 28px;
    color: #1e40af;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
}

.benefits-cta-content {
    background: linear-gradient(135deg, #1e40af, #16a34a);
    color: white;
    padding: 32px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-cta h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.benefits-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.benefits-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
    
}

.plan-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border: 4px solid #10b981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
    background: linear-gradient(180deg, #f0fdf4 0%, white 100%);
    transform: scale(1.1);
}

.plan-popular-badge {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #16a34a);
    color: white;
    padding: 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.plan-header {
    text-align: center;
    padding: 32px 32px 16px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.plan-subtitle {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 24px;
}

.plan-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.plan-original-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.plan-price {
    font-size: 27px;
    font-weight: 800;
    color: #1e40af;
}

.plan-period {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.plan-savings {
    color: #16a34a;
    font-weight: 700;
    font-size: 14px;
}

.plan-features {
    padding: 16px 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.feature i {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 16px 32px;
    background: #1e40af;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 32px 16px;
    width: calc(100% - 64px);
    border-radius: 8px;
}

.plan-btn:hover {
    background: #1d4ed8;
}

.plan-btn.popular {
    background: linear-gradient(135deg, #16a34a, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.plan-btn.popular:hover {
    background: linear-gradient(135deg, #15803d, #166534);
}

.plan-guarantee {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    padding: 0 32px 24px;
}

.guarantee-section {
    text-align: center;
    margin-top: 64px;
}

.guarantee-content {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.guarantee-content p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.6;
}

.urgency-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    display: inline-block;
}

.urgency-warning p {
    color: #991b1b;
    font-weight: 700;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-business {
    font-size: 14px;
    color: #6b7280;
}

.testimonials-rating {
    text-align: center;
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-summary .stars {
    gap: 4px;
}

.rating-summary .stars i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    font-weight: 700;
    color: #374151;
}

.rating-count {
    color: #9ca3af;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #16a34a);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-header {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 24px;
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    opacity: 0.9;
}

.contact-form {
    padding: 32px;
    color: #111827;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
    margin-bottom: 24px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

.form-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.form-indicators .indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.form-indicators .indicator i {
    font-size: 20px;
}

.form-privacy {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 16px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.info-item i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.urgency-card {
    background: #dc2626;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.urgency-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.urgency-card p {
    font-size: 16px;
    margin-bottom: 16px;
}

.countdown-display {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 14px;
    opacity: 0.9;
}

.contact-alternatives h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.contact-method i {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.method-title {
    font-weight: 700;
}

.method-value {
    font-weight: 600;
    color: #10b981;
}

.final-cta {
    text-align: center;
}

.final-cta-content {
    background: #fbbf24;
    color: #111827;
    padding: 32px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 24px;
}

.final-cta-btn {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 24px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-body p {
    font-size: 16px;
    color: #374151;
    margin: 0;
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons {
        margin-bottom: 24px;
    }
    
    .btn-cta-primary {
        font-size: 16px;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .benefits, .plans, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .benefit-card, .testimonial-card {
        padding: 24px;
    }
    
    .plan-card {
        margin: 0;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus, input:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}





.carousel-container {
  position: relative;
  max-width: 1120px;
  margin: auto;
  overflow: hidden;
  padding: 0px 0px 50px;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
   display: flex;
  transition: transform 0.5s ease;
  padding: 0; /* ou ajuste se quiser espaço nas bordas */
  gap: 16px; /* 👈 adiciona espaço entre as colunas */
}

.carousel-image {
 width: calc((100% - 48px) / 4); /* 3 gaps de 16px entre 4 colunas */
  flex-shrink: 0;
  border-radius: 8px;;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}


