@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-color: #E63946;
    /* Appetizing Red */
    --secondary-color: #F4A261;
    /* Vibrant Orange */
    --accent-color: #2A9D8F;
    /* Fresh Green */
    --dark-color: #1a1b26;
    --light-color: #F9F9F9;
    --text-color: #333333;
    --white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(230, 57, 70, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight-primary {
    color: var(--primary-color);
}

.highlight-secondary {
    color: var(--secondary-color);
}

.highlight-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 50px rgba(230, 57, 70, 0.3);
    color: var(--white);
}

.btn-upgrade {
    background: linear-gradient(135deg, #FFD700, #F4A261);
    color: var(--dark-color);
    box-shadow: 0 10px 20px rgba(244, 162, 97, 0.3);
}

.btn-upgrade:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(244, 162, 97, 0.4);
    color: var(--dark-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2d3e 100%);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ffe5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #d1d5db;
}

.hero-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Sobre a Autora */
.author-section {
    padding: 80px 0 0;
    background-color: var(--light-color);
}

.author-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent-color);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
}

.author-text p {
    font-size: 1.2rem;
    font-style: italic;
    color: #4b5563;
    line-height: 1.8;
}

/* Section: O que você vai receber */
.whats-included {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6b7280;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.included-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.included-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.included-card.premium {
    background: linear-gradient(180deg, #fffaf0, #fff);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.15);
}

.included-card.premium::before {
    content: 'ESPECIAL';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.premium .card-icon {
    background: rgba(244, 162, 97, 0.2);
    color: var(--secondary-color);
}

.included-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.bonus-list {
    list-style: none;
    margin-top: 20px;
    flex-grow: 1;
}

.bonus-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4b5563;
}

.bonus-list i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Seção: O que você vai aprender */
.learning {
    background-color: var(--white);
    position: relative;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.learning-card {
    background: var(--light-color);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.learning-icon {
    width: 70px;
    height: 70px;
    background: rgba(244, 162, 97, 0.15);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.learning-card:hover .learning-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.learning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.learning-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Benefícios */
.benefits {
    padding: 100px 0;
    background: var(--dark-color);
    color: var(--white);
}

.benefits .section-title h2 {
    color: var(--white);
}

.benefits .section-title p {
    color: #d1d5db;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #d1d5db;
    font-size: 0.95rem;
}

.benefits-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.benefits-image-grid img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefits-image-grid img:first-child {
    grid-row: span 2;
}

/* Pricing Grid */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf0, #fff);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.pricing-desc {
    color: #6b7280;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.pricing-card.basic .price {
    color: var(--text-color);
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.features li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.features li.disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

.features li.disabled i {
    color: #ef4444;
    /* red x */
}

.upsell-box {
    border: 2px dashed var(--secondary-color);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f3f4f6;
    color: var(--dark-color);
}

.upsell-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.upsell-price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.upsell-price span.old {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Prova Social / Depoimentos */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.testimonials .section-title {
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-name {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

/* Dica Rápida / Curiosidade */
.quick-tip {
    padding: 60px 0;
    background-color: var(--white);
}

.tip-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #fffaf0, #fff);
    border: 2px dashed var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.tip-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.tip-content p {
    font-size: 1.05rem;
    color: #4b5563;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light-color);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item summary {
    padding: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    /* remove default arrow in modern browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px;
    color: #4b5563;
    line-height: 1.6;
}

/* Animações UI - Setas */
.animated-arrow-container {
    text-align: center;
    margin-top: 10px;
}

.animated-arrow {
    font-size: 1.8rem;
    color: var(--white);
    animation: bounceUpDown 1.5s infinite;
}

@keyframes bounceUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Modal Upsell */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-height: 95vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    margin-bottom: 20px;
}

.pulse-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: float 2s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.modal-body p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.timer-box {
    background: rgba(230, 57, 70, 0.05);
    border: 2px dashed rgba(230, 57, 70, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.timer-box span {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#countdown {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
}

.pulse-text {
    animation: pulse-op 1s infinite alternate;
}

@keyframes pulse-op {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.5;
    }
}

.modal-bonus-list {
    text-align: left;
    list-style: none;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.modal-bonus-list li {
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modal-bonus-list li:last-child {
    margin-bottom: 0;
}

.modal-bonus-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.modal-call {
    font-size: 1.3rem !important;
    color: var(--dark-color) !important;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.link-recuse {
    color: #9ca3af;
    text-decoration: underline;
    font-size: 0.95rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.link-recuse:hover {
    color: #6b7280;
}

/* Garantia */
.guarantee {
    padding: 80px 0;
    background-color: var(--light-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 5rem;
    color: var(--accent-color);
    animation: float 4s ease-in-out infinite;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.guarantee-text p {
    color: #4b5563;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-cta {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 2.5rem;
    color: #9ca3af;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero .container,
    .included-grid,
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        text-align: center;
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .benefits-image-grid {
        order: -1;
        margin-bottom: 20px;
        grid-template-columns: 1fr;
    }

    .benefits-image-grid img:first-child {
        grid-row: auto;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .author-image img {
        width: 180px;
        height: 180px;
    }

    .tip-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .upsell-price {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 5px;
    }

    .btn {
        width: 100%;
        font-size: 1rem;
        padding: 15px 20px;
        white-space: normal;
    }
}

/* Gamification / Mini Conquista */
.achievement-badge {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    /* Dourado de recompensa */
    color: var(--dark-color);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    z-index: 9998;
    /* Just below modal */
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Efeito elástico */
    pointer-events: none;
    border: 3px solid #FFF;
}

.achievement-badge.show-achievement {
    bottom: 30px;
    opacity: 1;
}

.achievement-icon {
    font-size: 2rem;
    color: #b8860b;
    animation: spin 1s linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.achievement-text {
    display: flex;
    flex-direction: column;
}

.achievement-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.achievement-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .achievement-badge {
        width: 90%;
        padding: 15px 20px;
        bottom: -150px;
    }

    .achievement-badge.show-achievement {
        bottom: 20px;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    width: 300px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--accent-color);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.toast-content p {
    margin: 0;
    line-height: 1.3;
}

.toast-name {
    font-size: 0.85rem;
    color: #6b7280;
}

.toast-product {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--dark-color);
}

.toast-time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px !important;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        width: 100%;
        max-width: none;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }
}