:root {
    --primary-color: #58b1ab;
    --secondary-color: #9271b4;
    --background-color: #F9F8F6;
    --text-color: #333333;
    --white: #ffffff;
    --warning-bg: #e74c3c;
    --warning-text: #ffffff;
    --font-family: 'Inter', sans-serif;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

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

.text-secondary {
    color: var(--secondary-color);
}

.font-bold {
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Warning Bar */
.warning-bar {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--warning-text);
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }

    50% {
        opacity: 0.95;
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5);
    }
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(88, 177, 171, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(146, 113, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c3e50;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, rgba(146, 113, 180, 0.2), rgba(146, 113, 180, 0.3));
    z-index: -1;
    border-radius: 4px;
    animation: highlightGrow 0.6s ease-out 0.8s both;
}

@keyframes highlightGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 4px;
    background: linear-gradient(135deg, rgba(88, 177, 171, 0.15), rgba(88, 177, 171, 0.25));
    border-radius: 4px;
    animation: pulseHighlight 2s ease-in-out infinite;
}

@keyframes pulseHighlight {

    0%,
    100% {
        background: linear-gradient(135deg, rgba(88, 177, 171, 0.15), rgba(88, 177, 171, 0.25));
    }

    50% {
        background: linear-gradient(135deg, rgba(88, 177, 171, 0.25), rgba(88, 177, 171, 0.35));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-video-wrapper {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    /* Ensure the border container doesn't overflow */
    z-index: 1;
}

.hero-video-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 400% 400%;
    z-index: -1;
    border-radius: calc(var(--border-radius) + 10px);
    animation: borderFlow 3s ease infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
}

.hero-cta-text {
    font-size: 0.9rem;
    color: #777;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Offer Section */
.offer-section {
    padding: 60px 0;
    position: relative;
}

.offer-box {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 177, 171, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* Hotmart Widget */
.hotmart-widget-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(88, 177, 171, 0.2);
    border-color: var(--primary-color);
}

.benefit-item:hover::before {
    opacity: 0.05;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(88, 177, 171, 0.3);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(88, 177, 171, 0.4);
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--background-color) 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(88, 177, 171, 0.03) 0%, transparent 70%);
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.price-comparison {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 50px 40px;
    border-radius: var(--border-radius);
    color: var(--white);
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(88, 177, 171, 0.25);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.price-comparison::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.old-price {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.old-price .label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.old-price .amount {
    display: block;
    font-size: 1.6rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.new-price .label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.new-price .amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    animation: bounceRotate 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceRotate {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 22px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(88, 177, 171, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(88, 177, 171, 0.4);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

.guarantee-text {
    margin-top: 2rem;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.no-thanks-link {
    display: inline-block;
    margin-top: 2.5rem;
    color: #999;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.no-thanks-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666;
    transition: width 0.3s ease;
}

.no-thanks-link:hover {
    color: #666;
}

.no-thanks-link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.8rem;
    }

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

    .offer-box {
        padding: 40px 25px;
    }

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

    .benefit-item {
        padding: 30px 20px;
    }

    .price-comparison {
        padding: 40px 25px;
    }

    .new-price .amount {
        font-size: 2.8rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 20px 30px;
    }

    .discount-badge {
        font-size: 1.1rem;
        padding: 10px 20px;
        top: -12px;
        right: 15px;
    }
}