:root {
    --primary-color: #c99c54;
    /* Gold */
    --secondary-color: #d17582;
    /* Rose */
    --accent-color: #8bbabc;
    /* Mint */
    --text-dark: #3a2e2e;
    --text-light: #6e5e5e;
    --bg-color: #fdf6f4;
    /* Soft Peach */
    --white: #ffffff;
    --bg-dark: #fffbf9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(209, 117, 130, 0.3);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #b96470;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(209, 117, 130, 0.4);
}

.btn-secondary {
    background-color: #ffde59;
    /* Bright yellow/gold for the offer */
    color: #4a3300;
    box-shadow: 0 8px 20px rgba(201, 156, 84, 0.4);
}

.btn-secondary:hover {
    background-color: #f5d045;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 156, 84, 0.5);
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: 'Lora', serif;
    font-style: italic;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* --- BENEFITS SECTION --- */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.benefits h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefits h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--accent-color);
}

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* --- OFFER SECTION --- */
.offer {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add a gold overlay detail */
.offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(201, 156, 84, 0.2);
}

.offer-content {
    display: flex;
    justify-content: center;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
}

.discount {
    font-size: 1.5rem;
    color: #ffd45d;
    font-weight: 600;
}

.discount del {
    color: var(--white);
    opacity: 0.7;
}

.price {
    margin: 20px 0;
    color: var(--white);
}

.price .currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 5px;
}

.price .value {
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.8;
}

.price .cents {
    font-size: 3rem;
    font-weight: 700;
}

.installments {
    font-size: 1.5rem;
    color: #ffd45d;
    font-weight: 600;
    margin-bottom: 30px;
}

.warning {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* --- AUTHOR SECTION --- */
.author {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.author h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.author-details {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    border-left: 6px solid var(--primary-color);
}

.author-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.author-text p:last-child {
    margin-bottom: 0;
}

/* --- FOOTER --- */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .benefits h2 {
        font-size: 2rem;
    }

    .price .value {
        font-size: 5rem;
    }

    .price-box {
        padding: 30px 20px;
        width: 100%;
    }

    .author-details {
        padding: 30px 20px;
    }
}