@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --primary: #2d5a27;
    /* Forest Green */
    --primary-light: #4a7c44;
    --secondary: #1a3a5f;
    /* Deep Ocean Blue */
    --accent: #d4a373;
    /* Earthy Sand */
    --bg-light: #f8f9fa;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 40px 0;
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3a5f 0%, #2d5a27 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
}

.floating-globes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.globe {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    filter: blur(1px);
    user-select: none;
}

.globe-1 {
    top: 10%;
    left: 10%;
    animation: float1 15s ease-in-out infinite;
}

.globe-2 {
    top: 60%;
    left: 80%;
    animation: float2 18s ease-in-out infinite;
    font-size: 5rem;
}

.globe-3 {
    top: 40%;
    left: 5%;
    animation: float1 20s ease-in-out infinite;
    font-size: 3rem;
}

.globe-4 {
    top: 15%;
    left: 85%;
    animation: float2 12s ease-in-out infinite;
    font-size: 4.5rem;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 40px) rotate(15deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, -20px) rotate(-10deg);
    }
}

.hero .headline {
    color: #facc15;
}

.hero .subheadline {
    color: #e5e7eb;
}

.vsl-container {
    max-width: 400px;
    aspect-ratio: 9 / 16;
    background: #000;
    margin: 40px auto 0;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.vsl-container span {
    color: #666;
    font-size: 0.9rem;
}

/* Pain Points Section */
.pain-points {
    background: #fff;
}

/* Carousel / Image Sequence */
.carousel-container {
    max-width: 1000px;
    margin: 40px auto;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.carousel-img {
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.carousel-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .carousel-img {
        width: 80%;
    }
}

.check-list {
    max-width: 800px;
    margin: 40px auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #fff5f5;
    border-radius: 15px;
    border: 1px solid #fee2e2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.check-item:hover {
    transform: translateX(10px);
    background: #fff;
    border-color: #fca5a5;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.1);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.check-item span:not(.check-icon) {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pain-footer {
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 30px;
    font-weight: 600;
}

/* Organization Section Enhancements */
.org-card {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: white !important;
    padding: 25px !important;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.2);
    border: none !important;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.org-card strong {
    color: #facc15;
    /* Yellow for highlight */
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Grid & Cards */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.card li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Steps Section */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-img {
    flex: 1;
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: var(--shadow);
}

.step-content {
    flex: 1.5;
}

.step-number {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

/* Bonus Section */
.bonuses {
    background: #fff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bonus-card {
    text-align: center;
    border: 2px dashed var(--accent);
    padding: 25px;
    border-radius: var(--radius);
    background: white;
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.bonus-val {
    color: #4b5563;
    /* Muted color for the crossed out price */
    font-weight: bold;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

/* Pricing Section */
.offer {
    background: var(--secondary);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    padding: 50px 20px;
    margin: 20px 0;
}

.main-mockup {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-bottom: 15px;
    border: 10px solid #ffffff;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.price-container {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
    /* Vermelho para destaque */
    font-size: 1.6rem;
    font-weight: 600;
}

.new-price {
    font-size: 6rem;
    font-weight: 900;
    color: #22c55e;
    display: block;
    margin: 0 0 30px 0;
    text-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    line-height: 1;
}

.savings {
    background: #4ade80;
    color: #064e3b;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 0px #15803d;
    transition: all 0.2s;
    margin-top: 20px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(4px);
    box-shadow: 0 6px 0px #15803d;
}

/* Timer Styles */
.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #facc15;
    line-height: 1;
}

.timer-item small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial {
    background: #f3f4f6;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 15px;
    object-fit: cover;
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .step {
        flex-direction: column !important;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .savings {
        font-size: 0.85rem;
        display: inline-block;
        padding: 5px 10px;
    }

    .main-mockup {
        max-width: 90%;
        border-width: 6px;
    }

    .offer ul {
        max-width: 100% !important;
        padding: 0 10px;
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        font-size: 1.2rem;
        padding: 15px 10px;
    }
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.recommended {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #facc15;
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.2);
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #facc15;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-card .price-tag {
    margin: 20px 0;
}

.pricing-card .new-price {
    font-size: 4rem;
    margin: 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
}

.pricing-card.recommended ul li {
    color: #fff;
}

.pricing-card .cta-button {
    font-size: 1.1rem;
    padding: 15px 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .pricing-card.recommended {
        transform: none;
        margin-top: 20px;
    }

    .pricing-card.recommended:hover {
        transform: translateY(-5px);
    }
}

.highlight-accent {
    background: rgba(34, 197, 94, 0.2);
    border: 1px dashed #22c55e;
    padding: 10px !important;
    border-radius: 8px;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
    color: #4ade80 !important;
}