:root {
    --primary-color: rgb(238, 116, 198);
    --secondary-color: rgb(172, 102, 240);
    --accent-color: #6bdcff;
    --dark-blue: #2a4172;
    --light-blue: #e0f3ff;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9ff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2021/11/03/09/44/meditation-6765364_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

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

.book-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(800px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.book-mockup:hover {
    transform: perspective(800px) rotateY(0deg);
}

/* Benefits Section */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Swiper Common Styles */
.swiper-container {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 100%;
    /* Puedes ajustar el tamaño de cada slide */
    display: flex;
    align-items: center;
    /* Centra el contenido dentro del slide */
    justify-content: center;
    /* Centra el contenido */
    text-align: center;
    height: 100%;
    /* Asegura que los slides tengan la misma altura */
}

/* Testimonials Section */
.testimonial-section {
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.testimonial-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 250px;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info h5 {
    margin: 0;
    color: var(--dark-blue);
}

.author-info p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
}

/* Preview Section */
.preview-section {
    background-color: white;
}

.preview-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.preview-img:hover {
    transform: scale(1.05);
}

.preview-content ul {
    padding-left: 20px;
}

.preview-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.preview-content li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Bonus Section with Swiper */
.bonus-section {
    background-color: var(--dark-blue);
    color: white;
    position: relative;
}

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

.bonus-section .container,
.testimonial-section .container {
    overflow: hidden;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-icon {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Countdown Section */
.countdown-section {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 0 10px;
    min-width: 80px;
}

.countdown-box .number {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.countdown-box .label {
    font-size: 14px;
    text-transform: uppercase;
}

/* Subscribe Section */
.subscribe-section {
    background-color: white;
    padding: 80px 0;
}

.subscribe-box {
    background: var(--light-blue);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 55px;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: var(--light-text);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }

    70% {
box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }

    100% {
box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section {
padding: 70px 0;
    }

    .hero-section {
padding: 100px 0 70px;
    }

    .countdown-box {
min-width: 60px;
padding: 10px;
    }

    .countdown-box .number {
font-size: 24px;
    }

    .countdown-box .label {
font-size: 12px;
    }
}