:root {
    /* Colors */
    --primary-color: #D35269;
    /* Deep Strawberry Pink */
    --primary-dark: #b03a4f;
    --secondary-color: #FDFBF7;
    /* Soft Cream/Vanilla */
    --accent-color: #CCA43B;
    /* Gold/Bronze */
    --text-color: #2C1810;
    /* Dark Chocolate */
    --text-light: #5e4b45;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 10px 15px rgba(44, 24, 16, 0.1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 82, 105, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 82, 105, 0.6);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(135deg, #fff5f6 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    z-index: 2;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: rgba(211, 82, 105, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.hero-text .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(204, 164, 59, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.hero-trust {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-trust i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
}

.main-cake {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(211, 82, 105, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(211, 82, 105, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(211, 82, 105, 0.4);
    }
}

/* Shape Divider CSS */
.custom-shape-divider-bottom-16789 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-16789 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-16789 .shape-fill {
    fill: #FFFFFF;
}

/* Base Responsive styles for Hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-top: var(--spacing-md);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Content Section */
.section-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    position: relative;
}

.text-center {
    text-align: center;
}

.section-tag {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(211, 82, 105, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-sm);
}

.feature-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

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

/* About Section */
.section-about {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.portrait {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 450px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 10%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .experience-badge {
        right: 5%;
        padding: 1rem;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(211, 82, 105, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.quote {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Pricing / Offer Section */
.section-offer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c20 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card {
    background: var(--white);
    color: var(--text-color);
    max-width: 600px;
    margin: var(--spacing-lg) auto;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    z-index: -1;
}

.price-box {
    margin: var(--spacing-md) 0;
}

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: #999;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-installments {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 5px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: #ccc;
}

.guarantee-box img {
    width: 60px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 5px;
}

footer i {
    color: var(--primary-color);
}

/* Gallery Section */
.section-gallery {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    overflow: hidden;
}

.gallery-marquee {
    margin-top: var(--spacing-lg);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    animation: scroll 30s linear infinite;
}

.gallery-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5 - var(--spacing-md) * 5));
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 200px;
        height: 200px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-200px * 5 - var(--spacing-md) * 5));
        }
    }
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bonus-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffd1dc;
    transition: transform 0.3s;
}

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

.bonus-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bonus-card h4 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.bonus-price {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.highlight-bonus {
    border: 2px solid var(--accent-color);
    background: #fffbef;
}

.mb-sm {
    margin-bottom: 1rem;
}

.big-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Pricing Section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    color: var(--text-color);
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s;
}

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

.popular {
    width: 340px;
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-tag {
    background: var(--accent-color);
    color: #000;
    text-align: center;
    padding: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    color: var(--text-color);
    margin: 0;
}

.plan-body {
    padding: 30px 20px;
    text-align: center;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    margin-top: 5px;
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    margin-top: 5px;
    font-weight: 700;
}

.plan-installments {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.plan-features li {
    margin-bottom: 10px;
    list-style: none;
}

.plan-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.full-width {
    width: 100%;
}

/* Guarantee Landscape */
.guarantee-section {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-badge {
    width: 120px;
}

.guarantee-text h3 {
    color: #fff;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.scarcity-alert {
    margin-top: 20px;
    color: #ff9999;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer & Other */
.hero-badge-text {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.badge-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Learning Split Section */
.learning-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.learning-image {
    flex: 1;
}

.rounded-shadow {
    border-radius: var(--radius-lg);
    box-shadow: 20px 20px 0px rgba(211, 82, 105, 0.1);
    width: 100%;
    object-fit: cover;
}

.learning-text {
    flex: 1;
}

.learning-group h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learning-group p {
    color: var(--text-light);
    font-weight: 700;
}

.learning-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.learning-list i {
    color: var(--accent-color);
    margin-top: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.learning-list span {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .learning-wrapper {
        flex-direction: column;
    }

    .learning-image {
        order: -1;
        /* Image on top */
    }
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .popular {
        transform: scale(1);
        width: 100%;
        max-width: 340px;
    }

    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Logo */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Bonus Images */
.bonus-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-card {
    display: flex;
    flex-direction: column;
}