/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-cream-light: #FFFDD0;
    --color-cream-medium: #FDFBD4;
    --color-cream-dark: #E6E2B3;
    --color-accent: #C2B280;
    --color-text-default: #5A5334;
    --color-text-inverse: #FFFFFF;
    --color-active-bg: #B9B176;
    --color-buttons-bg: #706845;
    --color-hover-bg: #bdb87c;
    --color-border: #C9C59F;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text-default);
    overflow-x: hidden;
    background: var(--color-cream-light);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 253, 208, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--color-buttons-bg);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-default);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-buttons-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-default);
    margin: 3px 0;
    transition: 0.3s;
}

.heading {
    background: linear-gradient(135deg, var(--color-accent), var(--color-buttons-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-cream-medium) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-default);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
}

.btn-primary:hover {
    background: var(--color-hover-bg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-buttons-bg);
    border: 2px solid var(--color-buttons-bg);
}

.btn-secondary:hover {
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-default);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    background: var(--color-text-default);
    color: var(--color-text-inverse);
    border-color: var(--color-text-default);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-buttons-bg);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Browser Mockup */
.mockup-browser {
    background: var(--color-text-inverse);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(90, 83, 52, 0.1);
    overflow: hidden;
    max-width: 500px;
    border: 1px solid var(--color-border);
}

.browser-header {
    background: var(--color-cream-dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
}

.browser-dots span:nth-child(2) {
    background: var(--color-hover-bg);
}

.browser-dots span:nth-child(3) {
    background: var(--color-buttons-bg);
}

.browser-content {
    padding: 20px;
    min-height: 300px;
}

.whatsapp-mockup {
    background: var(--color-buttons-bg);
    border-radius: 8px;
    padding: 16px;
    color: var(--color-text-inverse);
}

.whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: var(--color-active-bg);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.message-preview p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text-default);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

/* Walk-through Section */
.walkthrough {
    padding: 20px 0;
    background: var(--color-text-inverse);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--color-cream-medium);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-default);
}

.step-content p {
    color: var(--color-accent);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--color-cream-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(90, 83, 52, 0.05);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(90, 83, 52, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-default);
}

.feature p {
    color: var(--color-accent);
    line-height: 1.6;
}

/* Input */
.input {
    width: 100%;
    border-radius: 15px;
    padding: 16px 20px;
    border: 1px solid var(--color-accent);
    background-color: var(--color-cream-light);
    color: var(--color-text-default);
    font-size: 1rem;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Pricing Section */
.pricing {
    padding: 20px 0;
    background: var(--color-cream-medium);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-text-inverse);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(90, 83, 52, 0.05);
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(90, 83, 52, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--color-buttons-bg);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: x-small;
    font-weight: 600;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-default);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-buttons-bg);
}

.period {
    font-size: 1rem;
    color: var(--color-accent);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--color-accent);
    font-size: 0.95rem;
}

/* FAQs Section */
.faqs {
    padding: 20px 0;
    background: var(--color-text-inverse);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--color-buttons-bg);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: inherit;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--color-text-default);
    line-height: 1.6;
}

/* Uninstalled Section */
.uninstalled {
    padding: 20px 0;
    background: var(--color-cream-medium);
    display: none;
}

.uninstalled.show {
    display: block;
}

.uninstalled-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.uninstalled-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-default);
}

.uninstalled-content>p {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

.feedback-options {
    margin-bottom: 3rem;
}

.feedback-options h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text-default);
}

.feedback-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feedback-btn {
    padding: 8px 16px;
    background: var(--color-text-inverse);
    border: 2px solid var(--color-border);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--color-text-default);
}

.feedback-btn:hover,
.feedback-btn.selected {
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
    border-color: var(--color-buttons-bg);
}

.reinstall-offer {
    background: var(--color-text-inverse);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(90, 83, 52, 0.05);
    border: 1px solid var(--color-border);
}

.reinstall-offer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-default);
}

.reinstall-offer p {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text-default);
    color: var(--color-text-inverse);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--color-text-inverse);
    border: 1px solid var(--color-text-inverse);
}

/* Footer */
.footer {
    background: var(--color-text-default);
    color: var(--color-text-inverse);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-hover-bg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-hover-bg);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-buttons-bg);
    color: var(--color-text-inverse);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(112, 104, 69, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(112, 104, 69, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--color-text-inverse);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-default);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--color-text-default);
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--color-text-default);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--color-accent);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--color-text-default);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--color-cream-light);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(90, 83, 52, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .feedback-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .mockup-browser {
        max-width: 100%;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
}

/* Feature Gallery Styles */
.feature-gallery {
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--color-cream-light);
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 500%;
}

.gallery-slide {
    width: 20%;
    position: relative;
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    object-fit:contain;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-text-inverse);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-inverse);
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-default);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--color-hover-bg);
}

@media (max-width: 768px) {
    .gallery-slide img {
        height: 400px;
    }
    
    .slide-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.25rem;
    }
    
    .slide-overlay p {
        font-size: 0.9rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 0.5rem;
    }
    
    .gallery-next {
        right: 0.5rem;
    }
}