/* Estilos gerais */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #3498db;
    --accent-color: #f1c40f;
    --dark-color: #1a0033;
    --medium-dark: #2d004d;
    --light-color: #f5f0ff;
    --text-color: #e0d3f0;
    --header-font: 'Cinzel', serif;
    --body-font: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    color: white;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    bottom: -10px;
    left: 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Efeito de estrelas no céu */
@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000;
    z-index: -2;
}

.twinkling {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    z-index: -1;
    animation: move-twink-back 200s linear infinite;
}

/* Botão principal */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.6);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Animação de pulsar para os botões */
@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(142, 68, 173, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
    }
}

.pulsate {
    animation: pulsate 2s infinite;
}

/* Animações das cartas */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-reverse {
    animation: float-reverse 5s ease-in-out infinite;
}

.floating-slow {
    animation: float 8s ease-in-out infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(26, 0, 51, 0.6), rgba(26, 0, 51, 0.9));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/plano-fundo-mistic.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-color) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 10px rgba(142, 68, 173, 0.7);
    background: linear-gradient(90deg, #fff, var(--accent-color), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
}

.card-container {
    position: relative;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.tarot-card {
    position: absolute;
    width: 220px;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    background: #2c0047;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tarot-card:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.tarot-card:nth-child(2) {
    top: 5%;
    left: 30%;
    transform: translateX(-50%) rotate(-10deg);
    z-index: 2;
}

.tarot-card:nth-child(3) {
    top: 15%;
    left: 70%;
    transform: translateX(-50%) rotate(10deg);
    z-index: 1;
}

.tarot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.tarot-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* Animações fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.9s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.mouse-wheel {
    width: 5px;
    height: 10px;
    background-color: var(--text-color);
    border-radius: 25%;
    animation: scroll 2s infinite;
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Seção Persona */
.persona {
    background: linear-gradient(135deg, var(--medium-dark) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.persona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/geometria-sagrada.png') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.pain-point {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-point::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.pain-point:hover::after {
    opacity: 1;
}

.pain-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Seção Solução */
.solution {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--medium-dark) 100%);
    position: relative;
}

.solution-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.4) 0%, rgba(142, 68, 173, 0) 70%);
    opacity: 0.5;
    z-index: -1;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.solution-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
}

.feature-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Seção Credenciais */
.credentials {
    background: linear-gradient(135deg, var(--medium-dark) 0%, var(--dark-color) 100%);
    position: relative;
}

.credential-card {
    background: rgba(26, 0, 51, 0.7);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.3) 0%, rgba(142, 68, 173, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.credential-card:hover::before {
    opacity: 1;
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.credential-card:hover::after {
    opacity: 1;
}

.credential-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.credential-icon i {
    font-size: 2rem;
    color: white;
}

/* Seção Testemunhos */
.testimonials {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--medium-dark) 100%);
    position: relative;
}

.testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.testimonial-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.testimonial-content:hover::after {
    opacity: 1;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: var(--accent-color);
    margin-right: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Seção Oferta */
.offer {
    background: url('img/fundoSelecaoOferta.png') no-repeat center center/cover;
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 0, 77, 0.9) 100%);
}

.offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.offer-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, rgba(142, 68, 173, 0) 70%);
    opacity: 0.1;
    z-index: -1;
}

.offer-header {
    margin-bottom: 30px;
}

.offer-header .section-title {
    text-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
}

.offer-subtitle {
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
}

.offer-image {
    position: relative;
}

.offer-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.offer-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.offer-price {
    margin: 30px 0;
    position: relative;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
}

.current-price span {
    color: var(--accent-color);
}

.discount-tag {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.countdown div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.countdown span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-color);
}

.guarantee-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#garantia {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 150px;
    object-fit: contain;
}

.payment-icons {
    margin-top: 15px;
}

.payment-icons i {
    font-size: 2rem;
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Seção de Aviso */
.warning {
    background: linear-gradient(135deg, var(--medium-dark) 0%, var(--dark-color) 100%);
}

.imagination-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.imagination-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.imagination-card:hover::after {
    opacity: 1;
}

.imagination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.imagination-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.imagination-icon i {
    font-size: 2rem;
    color: white;
}

/* Seção de Reforço Final */
.final-reinforcement {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--medium-dark) 100%);
    position: relative;
}

.final-reinforcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 0, 77, 0.9) 100%);
}

.final-reinforcement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 0;
}

.final-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.options {
    margin-top: 30px;
}

.option-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-item.highlight {
    background: rgba(142, 68, 173, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.option-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.option-item.highlight .option-number {
    background: var(--accent-color);
    color: var(--dark-color);
}

.option-content h3 {
    margin-top: 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Animação de revelar ao rolar */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .card-container {
        height: 300px;
    }
    
    .tarot-card {
        width: 150px;
        height: 260px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 60px;
    }
    
    .hero .row {
        min-height: auto !important;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .testimonial-carousel {
        gap: 20px;
    }
    
    /* Otimizar animações para dispositivos móveis */
    .fade-in, .fade-in-delay, .fade-in-delay-2, .fade-in-delay-3 {
        animation-duration: 0.7s;
    }
    
    .fade-in-delay {
        animation-delay: 0.2s;
    }
    
    .fade-in-delay-2 {
        animation-delay: 0.4s;
    }
    
    .fade-in-delay-3 {
        animation-delay: 0.6s;
    }
    
    /* Ajustar espaçamento entre seções */
    .hero + .persona {
        margin-top: 0px;
    }
    
    section + section {
        padding-top: 50px;
    }
    
    /* Melhorar legibilidade */
    p, .feature-item p, .imagination-card p, .credential-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.7rem;
        text-align: center;
        margin: 0 auto 1.5rem;
    }
    
    .persona .lead {
        padding: 0 10px;
        margin-bottom: 2rem;
    }
    
    .pain-point {
        padding: 20px 15px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .pain-point h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .credential-card, .imagination-card, .offer-box {
        padding: 20px 15px;
    }
    
    .offer-list li {
        align-items: flex-start;
    }
    
    .offer-list i {
        margin-top: 3px;
    }
    
    .offer-price {
        margin: 20px 0;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown div {
        padding: 8px 12px;
        min-width: 70px;
    }
    
    .countdown span {
        font-size: 1.5rem;
    }
    
    .guarantee-box {
        padding: 20px 15px;
    }
    
    .final-box {
        padding: 30px 20px;
    }
    
    .option-item {
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 5px;
        margin-bottom: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-container {
        width: 280px;
        height: 280px;
        margin: 0 auto 2rem;
        transform: scale(0.9);
    }
    
    .tarot-card {
        position: absolute;
        width: 110px;
        height: 190px;
        top: 50%;
        transform-origin: center center;
    }
    
    .tarot-card:nth-child(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    
    .tarot-card:nth-child(2) {
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%) rotate(-10deg);
        z-index: 2;
    }
    
    .tarot-card:nth-child(3) {
        top: 50%;
        left: 75%;
        transform: translate(-50%, -50%) rotate(10deg);
        z-index: 1;
    }
    
    .testimonial-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .option-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .option-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    @keyframes float-mobile {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        50% {
            transform: translate(-50%, -53%) rotate(2deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
    }
    
    @keyframes float-reverse-mobile {
        0% {
            transform: translate(-50%, -50%) rotate(-10deg);
        }
        50% {
            transform: translate(-50%, -53%) rotate(-12deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(-10deg);
        }
    }
    
    @keyframes float-slow-mobile {
        0% {
            transform: translate(-50%, -50%) rotate(10deg);
        }
        50% {
            transform: translate(-50%, -53%) rotate(12deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(10deg);
        }
    }
    
    .tarot-card:nth-child(1) {
        animation: float-mobile 6s ease-in-out infinite;
    }
    
    .tarot-card:nth-child(2) {
        animation: float-reverse-mobile 5s ease-in-out infinite;
    }
    
    .tarot-card:nth-child(3) {
        animation: float-slow-mobile 8s ease-in-out infinite;
    }
    
    #garantia {
        max-height: 120px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .card-container {
        width: 240px;
        height: 240px;
        transform: scale(0.85);
    }
    
    .tarot-card {
        width: 100px;
        height: 170px;
    }
    
    .countdown div {
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .countdown span {
        font-size: 1.3rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    #garantia {
        max-height: 100px;
    }
}

/* Adicionar um efeito de gradiente animado */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Adicionar detalhes místicos na navegação */
.scroll-indicator .mouse {
    position: relative;
}

.scroll-indicator .mouse::before,
.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.scroll-indicator .mouse::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Estilos para enfatizar oportunidade financeira */
.warning-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
}

.last-warning {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,3 Q50,7 100,3 L100,6 Q50,10 0,6 Z" fill="%23f1c40f"/></svg>') no-repeat;
    background-size: 100% 100%;
    bottom: -5px;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.current-price {
    position: relative;
    z-index: 1;
}

.current-price::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.discount-tag {
    animation: wiggle 2.5s infinite;
    transform-origin: center;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
}

/* Melhorar aparência dos cards com destaque financeiro */
.credential-card h3, .imagination-card h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.credential-card h3::after, .imagination-card h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    bottom: -5px;
    left: 25%;
    border-radius: 2px;
}

/* Destacar valores monetários nos depoimentos */
.author-info p {
    position: relative;
    display: inline-block;
}

.author-info p::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    bottom: -2px;
    left: 0;
}

/* Otimizações para dispositivos móveis */
.mobile-ready {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-optimized h1,
.mobile-optimized h2,
.mobile-optimized p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Media queries adicionais para garantir legibilidade */
@media (max-width: 576px) {
    .mobile-optimized h1 {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }
    
    .mobile-optimized h2 {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
} 