:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #a3b18a;
    /* Sage Green - Calma/Natureza */
    --accent-hover: #dad7cd;
    --btn-primary-bg: #588157;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: #ffffff;
    --btn-secondary-text: #ffffff;
    --border-radius: 16px;
    --spacing-unit: 1rem;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.section-image {
    display: block;
    max-width: 100%;
    width: 250px;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 320px;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.icon-hero {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-text-block {
    margin-top: 3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-text-block p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.hero-text-block .highlight {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card ul {
    list-style-type: none;
    padding-left: 0;
}

.card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.calm-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* What You Receive */
.full-width-card {
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 1rem;
    font-weight: bold;
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bonuses */
.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.bonus-image-card {
    display: block;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.pricing-card.complete {
    border: 1px solid var(--accent-color);
    background: linear-gradient(145deg, #1e1e1e 0%, #252525 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #121212;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--text-primary);
}

.benefits {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: baseline;
}

.benefits li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 0.8rem;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.btn-primary:hover {
    background-color: #6b9c6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 129, 87, 0.4);
}

.btn-secondary {
    border: 1px solid var(--btn-secondary-border);
    color: var(--btn-secondary-text);
}

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

/* Guarantee */
.guarantee-card {
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: transparent;
}

.icon-guarantee {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content ul {
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.refund-text {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .container {
        padding: 0 1rem;
    }
}

.audio-hint {
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* WhatsApp Audio Player Style */
.wa-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.wa-player {
    background-color: #202c33;
    /* Darker bubble color */
    border-radius: 0 16px 16px 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.wa-player::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #202c33;
    border-right-color: #202c33;
    border-bottom: 0;
}

.wa-avatar-col {
    margin-right: 14px;
    position: relative;
    display: flex;
    align-items: center;
}

.wa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-mic-badge {
    position: absolute;
    bottom: 0;
    right: -2px;
    color: var(--text-secondary);
    font-size: 14px;
    background: #202c33;
    border-radius: 50%;
    padding: 1px;
}

.wa-controls-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.wa-top {
    display: flex;
    align-items: center;
}

.wa-play-pause {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 12px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.wa-play-pause:hover {
    color: var(--text-primary);
}

.wa-slider-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.wa-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    background-image: linear-gradient(var(--accent-color), var(--accent-color));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.wa-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.wa-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.wa-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding-left: 36px;
    /* Align with slider start */
}

.wa-time {
    font-variant-numeric: tabular-nums;
}

.wa-speed-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
}

.wa-speed-toggle.active {
    background-color: var(--accent-color);
    color: #121212;
}

.wa-status-check {
    margin-left: 4px;
    font-size: 1rem;
    color: #53bdeb;
    /* Blue ticks */
    display: flex;
    align-items: center;
}