/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Notificação de Venda */
.notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00A86B 0%, #008855 100%);
    color: white;
    padding: 12px 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    text-align: center;
    font-size: 0.95rem;
}

.notification.show {
    transform: translateY(0);
}

.notification strong {
    font-weight: 700;
}

/* Banner de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    animation: pulse-bg 2s infinite;
}

.urgency-banner #countdown {
    background: #fff;
    color: #ee5a24;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1.1rem;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B4789 0%, #6A3068 100%);
    color: #fff;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 100%);
    padding: 40px 15px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.hero .highlight {
    color: #8B4789;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Caixa de Preço */
.price-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 500px;
    margin: 30px auto;
    border: 3px solid #FFD700;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.old-price span {
    text-decoration: line-through;
    color: #ff0000;
    font-weight: 700;
    font-size: 1.5rem;
}

.new-price {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.new-price span {
    color: #00A86B;
    font-weight: 900;
    font-size: 3rem;
    display: block;
    margin: 10px 0;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.format-info {
    color: #8B4789;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 15px;
}

.installment {
    color: #666;
    font-size: 1rem;
    margin-top: 10px;
}

.guarantee-text {
    color: #00A86B;
    font-weight: 600;
    margin-top: 20px;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #00A86B 0%, #008855 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008855 0%, #006644 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-large {
    padding: 22px 55px;
    font-size: 1.3rem;
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(0,168,107,0.5);
    }
}

.stock-alert {
    color: #ee5a24;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.1rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Conteúdo Section */
.conteudo {
    padding: 40px 15px;
    background-color: #fff;
}

.conteudo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #8B4789;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* Carrossel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 0;
}

.carousel {
    overflow: hidden;
    width: 100%;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: calc(25% - 12px);
    flex-shrink: 0;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8B4789 0%, #6A3068 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #6A3068 0%, #8B4789 100%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.livros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.livro-item {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 100%);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #FFD700;
}

.livro-item:hover {
    transform: translateY(-3px);
}

.livro-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.livro-item h4 {
    font-size: 0.95rem;
    color: #8B4789;
    font-weight: 700;
    line-height: 1.3;
}

.mais-livros {
    text-align: center;
    color: #8B4789;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 15px;
    background: #FFF5E6;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4789 0%, #6A3068 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Depoimentos */
.depoimentos {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    padding: 40px 15px;
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #8B4789;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.depoimento-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author {
    color: #8B4789 !important;
    font-weight: 700;
    font-style: italic;
}

/* Benefícios */
.beneficios {
    background: white;
    padding: 40px 15px;
}

.beneficios h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #8B4789;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.beneficio {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.beneficio:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.beneficio h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #8B4789;
    font-weight: 700;
}

.beneficio p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    padding: 40px 15px;
}

.faq h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #8B4789;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #8B4789;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 40px 15px;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-badges span {
    background: white;
    color: #8B4789;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
}

.footer-text {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .header {
        padding: 20px 0;
    }

    .header-text h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .hero {
        padding: 30px 12px;
    }

    .hero h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
    }

    .price-box {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .new-price span {
        font-size: 2.3rem;
    }

    .conteudo {
        padding: 30px 12px;
    }

    .conteudo h2 {
        font-size: 1.8rem;
    }

    .carousel-container {
        padding: 0 35px;
    }

    .carousel-item {
        min-width: calc(50% - 8px);
    }

    .carousel {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .livro-item {
        padding: 15px 10px;
    }

    .livro-item h4 {
        font-size: 0.85rem;
    }

    .mais-livros {
        font-size: 1rem;
        padding: 12px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-section {
        padding: 25px 15px;
        margin-top: 30px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .notification {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .urgency-banner {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .depoimentos {
        padding: 30px 12px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .depoimento-card {
        padding: 20px;
    }

    .beneficios {
        padding: 30px 12px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beneficio {
        padding: 20px;
    }

    .faq {
        padding: 30px 12px;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-final {
        padding: 30px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text h1 {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .hero {
        padding: 25px 10px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .price-box {
        padding: 15px 12px;
    }

    .new-price span {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }

    .carousel {
        padding: 0 30px;
    }

    .mais-livros {
        font-size: 0.9rem;
    }
}
