:root {
    --primary-color: #FFB5C5;
    --secondary-color: #B8A5D6;
    --accent-color: #FFD4A3;
    --success-color: #A8D5BA;
    --text-dark: #5a4a6a;
    --text-light: #9e8fb0;
    --background: #FFF9F5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFB5C5 0%, #B8A5D6 50%, #FFD4A3 100%);
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Card Stack Animation */
.card-stack {
    position: relative;
    height: 400px;
}

.demo-card {
    position: absolute;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.demo-card i {
    font-size: 3rem;
    margin-bottom: 30px;
}

.demo-card p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-1 {
    transform: rotate(-5deg) translateX(-20px);
    z-index: 3;
}

.card-2 {
    transform: rotate(3deg) translateY(20px);
    z-index: 2;
}

.card-3 {
    transform: rotate(-2deg) translateX(40px) translateY(40px);
    z-index: 1;
}

.demo-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFB5C5, #B8A5D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #FFB5C5 0%, #B8A5D6 50%, #FFD4A3 100%);
    color: white;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    color: #FFD4A3;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    background: white;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFB5C5, #FFD4A3);
    color: var(--text-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-price {
    margin-bottom: 30px;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFB5C5, #B8A5D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

.btn-buy {
    background: linear-gradient(135deg, #FFB5C5, #B8A5D6);
    color: white;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-guarantee {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.summary-row.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
}

.checkout-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Modal Processing */
.modal-processing {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.processing-phone {
    margin-top: 30px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.processing-phone i {
    color: var(--primary-color);
}

/* Modal Success */
.modal-success {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.success-email {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 20px 0;
}

.access-code-display {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.access-code-display input {
    flex: 1;
    padding: 14px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    background: #f0f4ff;
}

.btn-copy {
    padding: 14px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .card-stack {
        height: 300px;
        margin-top: 40px;
    }
    
    .demo-card {
        width: 200px;
        height: 250px;
        padding: 30px;
    }
    
    .demo-card p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* ============================================
   CARTAS HOMEPAGE - WATERCOLOR DESIGN
   VERSÃO CORRIGIDA E TESTADA
============================================ */

/* Container das cartas */
.card-stack {
    position: relative;
    width: 100%;
    height: 550px;
    margin: 0 auto;
}

/* Base das demo cards */
.demo-card {
    position: absolute;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, z-index 0.3s ease;
}

/* Topo watercolor */
.demo-card-header {
    height: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Efeito watercolor - camada 1 */
.demo-card-header::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at 30% 40%, currentColor 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

/* Efeito watercolor - camada 2 */
.demo-card-header::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at 70% 60%, currentColor 0%, transparent 65%);
    opacity: 0.6;
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}

/* Ícone */
.demo-card-icon {
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Categoria no topo */
.demo-card-category {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    z-index: 2;
    opacity: 0.9;
}

/* Parte da pergunta */
.demo-card-question {
    flex: 1;
    background: white;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.demo-card-question p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin: 0;
}

/* Cores por categoria */
.demo-card[data-category="Cartas Leves"] .demo-card-header { 
    color: #FFE0A3; 
}

.demo-card[data-category="Cartas de Sentir"] .demo-card-header { 
    color: #B8A5D6; 
}

.demo-card[data-category="Cartas de Espelho"] .demo-card-header { 
    color: #7DD3C0; 
}

.demo-card[data-category="Cartas de Limites"] .demo-card-header { 
    color: #FFB8D9; 
}

.demo-card[data-category="Cartas de Cuidado"] .demo-card-header { 
    color: #FFB5C5; 
}

.demo-card[data-category="Cartas Bónus"] .demo-card-header { 
    color: #F4A261; 
}

/* Posicionamento das cartas */
.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg) translateX(-20px);
    z-index: 3;
}

.card-2 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    z-index: 2;
}

.card-3 {
    top: 40px;
    right: 0;
    transform: rotate(-2deg) translateX(20px);
    z-index: 1;
}

/* Hover effect */
.demo-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10 !important;
}