:root {
    /* Color Palette */
    --color-bg: #091209; /* Very dark moss */
    --color-bg-light: #121F14;
    --color-primary: #345e43;
    --color-primary-light: #4A7A5B;
    --color-secondary: #D4C3A3; /* Bamboo/Beige */
    --color-text: #E8F0EA;
    --color-text-muted: #A3B5AA;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, .badge {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Utilities --- */
.glass {
    background: rgba(18, 31, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 195, 163, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 94, 67, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 94, 67, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(52, 94, 67, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 94, 67, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-strong {
    animation: pulse 1.5s infinite;
}

/* Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(9, 18, 9, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%; /* Reduced parallax height to zoom out a bit */
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translateZ(0); /* Hardware accel */
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(9, 18, 9, 0.9) 0%, rgba(9, 18, 9, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 195, 163, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 195, 163, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* --- Common Sections --- */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- Info Section --- */
.info {
    position: relative;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-light));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(52, 94, 67, 0.15);
    border-color: rgba(212, 195, 163, 0.3);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.benefit-card p {
    color: var(--color-text-muted);
}

.diferenciais-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-primary);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dif-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
}

.dif-item i {
    color: var(--color-secondary);
    font-size: 1rem;
}

/* --- Visual Demo Section --- */
.visual-demo {
    background: var(--color-bg-light);
    overflow: hidden;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-image-wrapper {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    aspect-ratio: 1/1;
}

.demo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: breathing 15s infinite alternate ease-in-out;
}

@keyframes breathing {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.demo-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    z-index: -1;
}

.demo-content h2 {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.demo-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--color-primary-light);
    margin-top: 5px;
}

.feature-list strong {
    color: var(--color-secondary);
}

/* --- Social Proof --- */
.social-proof {
    background: linear-gradient(to bottom, var(--color-bg-light), var(--color-bg));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(212, 195, 163, 0.1);
    line-height: 1;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.author {
    color: var(--color-secondary);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* --- Final CTA --- */
.final-cta {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 18, 9, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.cta-content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* Aumentado o gap entre as caixas */
    width: 100%;
    margin: 5rem 0; /* Aumentado a margem acima e abaixo para afastar do texto externo */
}

.pricing-card {
    padding: 5rem 2.5rem; /* Aumentado o padding vertical para afastar o texto interno das bordas */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.caixa-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2.5rem; /* Margem para afastar a imagem do texto abaixo */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary-light);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem; /* Aumentado a distância entre o título e a descrição */
}

.pricing-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-amount .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
    color: var(--color-secondary);
}

.price-amount .cents {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.popular {
    transform: scale(1.05);
    background: rgba(30, 50, 35, 0.5);
    border: 1px solid var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.secure-text {
    margin-top: 1.5rem;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
}

.secure-text i {
    color: #4CAF50;
}

/* --- Footer --- */
.footer {
    background: #050a06;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons {
    padding-left: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--color-secondary);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.2);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- Moving Particles --- */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(212, 195, 163, 0.4);
    border-radius: 50%;
    filter: blur(1px);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0) rotate(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(100px) rotate(360deg); opacity: 0; }
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .demo-grid {
        grid-template-columns: 1fr;
    }
    .demo-image-wrapper {
        margin-bottom: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hide-mobile {
        display: none !important;
    }
    .scroll-indicator {
        display: none !important;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Cart Modal --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-modal {
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg);
    border-left: 1px solid rgba(212, 195, 163, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-overlay.active .cart-modal {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--color-text);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--color-secondary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-controls button {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--color-text);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-controls button:hover {
    background: var(--color-primary);
}

.cart-item-qty {
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(9, 18, 9, 0.95);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-secondary);
}

.cart-empty-msg {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 2rem;
}
