/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #ffca00;
    --light-yellow: #fff8e1;
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --success: #10B981;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
}

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

/* Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 32px;
    height: 32px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 16px auto 0;
}

.loader-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 202, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--black);
}

.brand-icon {
    background: var(--primary-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
}

.nav-brand img {
    width: 44px;
    height: 44px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--primary-yellow);
}

.wpp-btn {
    background: #40c351;
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(64, 195, 81, 0.3);
    font-size: 14px;
}

.wpp-btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 50%, #fffaf0 100%);
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffca00" opacity="0.1"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="3" fill="%23ffca00" opacity="0.1"><animate attributeName="r" values="3;6;3" dur="4s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="2" fill="%23ffca00" opacity="0.1"><animate attributeName="r" values="2;5;2" dur="5s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title .word.highlight {
    background: var(--primary-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.stat-plus,
.stat-percent,
.stat-star {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 4px;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-btn {
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 202, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 202, 0, 0.4);
    background: var(--primary-yellow);
}

.magnetic {
    transition: transform 0.3s ease;
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.cta-subtitle {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 1s ease-out 1.1s forwards;
    max-width: 100%;
}

#home .hero-visual img {
    width: 100%;
    max-width: 400px;
}

.dashboard-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-screen {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 202, 0, 0.2);
    min-width: 380px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) {
    background: #ff5f56;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #27ca3f;
}

.screen-title {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.dashboard-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
}

.dash-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 16px;
}

.dash-info h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 4px;
}

.dash-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Recursos Section */
.recursos {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.recurso-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.recurso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: var(--transition);
}

.recurso-card:hover::before {
    transform: scaleX(1);
}

.recurso-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.recurso-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 202, 0, 0.15);
}

.recurso-card.featured::before {
    transform: scaleX(1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 202, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.recurso-card:hover .card-glow {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.2);
}

.recurso-card:hover .recurso-icon {
    transform: scale(1.1) rotate(5deg);
}

.recurso-icon i {
    font-size: 32px;
    color: var(--black);
}

.recurso-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.recurso-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.recurso-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
}

.recurso-list i {
    color: var(--success);
    font-size: 14px;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    transition: var(--transition);
}

.learn-more-btn:hover,
.learn-more-btn.featured {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 202, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Restaurant Showcase Section */
.restaurant-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-gray);
    color: var(--white);
}

.restaurant-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 50%,
            rgba(255, 202, 0, 0.15) 100%),
        url('/images/lp/receipt.jpg');
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
}



.restaurant-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.restaurant-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.showcase-content p {
    font-size: 1.2rem;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.showcase-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-yellow);
}

.showcase-item i {
    font-size: 2rem;
}

.showcase-item span {
    font-weight: 600;
    color: var(--white);
}

.showcase-btn {
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 202, 0, 0.3);
}

.showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 202, 0, 0.4);
    background: var(--primary-yellow);
}

/* Planos Section */
.planos {
    padding: 120px 0;
    background: var(--light-gray);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.plano-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 202, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
}

.plan-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.price {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: var(--medium-gray);
}

.price-note {
    font-size: 0.9rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 32px 0;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
}

.plan-features i {
    color: var(--success);
    font-size: 16px;
}

.plan-btn {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
}

.plan-btn:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.4);
}

.plan-btn.featured {
    background: var(--primary-yellow);
    color: var(--black);
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    font-weight: 500;
}

.guarantee-box i {
    font-size: 1.2rem;
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: var(--white);
    color: var(--black);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contato-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.contato-info p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: var(--white);
    border-color: var(--primary-yellow);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.2);
}

.contact-info strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
}

.contact-info span {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.contact-info small {
    color: var(--primary-yellow);
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

/* Form */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-yellow);
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 12px;
}

.form-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 0 8px;
    border: none;
    border-bottom: 2px solid var(--light-gray);
    background: transparent;
    font-size: 16px;
    color: var(--black);
    transition: var(--transition);
}

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

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.form-group input:focus+.input-line,
.form-group select:focus+.input-line {
    width: 100%;
}

.form-submit {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.4);
    background: var(--primary-yellow);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: var(--light-gray);
    color: var(--black);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: var(--medium-gray);
    margin: 16px 0 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 202, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 202, 0, 0.3);
    background: var(--primary-yellow);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

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

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

.footer-section a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.badge {
    background: rgba(255, 202, 0, 0.1);
    color: var(--primary-yellow);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 202, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 40px 0;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border-top: 2px solid var(--primary-yellow);
        height: 100vh;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        margin-top: 80px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .recursos-grid,
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plano-card.featured {
        transform: none;
    }

    .showcase-features {
        flex-direction: column;
        gap: 24px;
    }

    .showcase-content h2 {
        font-size: 2rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .showcase-item {
        flex-direction: row;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}























.botao-Whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #40c351;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(64, 195, 81, 0.4);

    /* 🌟 EFEITO FLUTUANTE SIMPLES */
    animation: floating 3s ease-in-out infinite;

    /* Transição suave para hover */
    transition: all 0.3s ease;
}

/* 🔧 CORRIGE O PROBLEMA DO SVG */
.botao-Whatsapp>svg {
    width: 32px;
    height: 32px;
    pointer-events: none;
    /* Esta linha resolve o bug */
    transition: transform 0.3s ease;
}

/* 🎈 TOOLTIP BALÃOZINHO */
.tooltip-balloon {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c2c2c;
    color: white;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    /* Estado inicial: invisível */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px) scale(0.9);

    /* Animação suave */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
}

/* 🎯 SETINHA DO BALÃO */
.tooltip-balloon::after {
    content: '';
    position: absolute;
    left: 99%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left-color: #2c2c2c;
}

/* 💫 EFEITOS NO HOVER */
.botao-Whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(64, 195, 81, 0.6);
}

.botao-Whatsapp:hover svg {
    transform: scale(1.1);
}

.botao-Whatsapp:hover .tooltip-balloon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
}

/* 🚀 EFEITO NO CLIQUE */
.botao-Whatsapp:active {
    transform: translateY(-3px) scale(1.05);
}

/* 🌊 ANIMAÇÃO DE FLUTUAÇÃO */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* 📱 RESPONSIVO */
@media (max-width: 768px) {
    .botao-Whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .botao-Whatsapp>svg {
        width: 28px;
        height: 28px;
    }

    .tooltip-balloon {
        right: 60px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .tooltip-balloon::after {
        border-width: 5px;
    }
}




/* Screenshots do Sistema */
.sistema-screenshots {
    margin-bottom: 120px;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 48px;
}

.screenshots-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.screenshots-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 500px;
    margin: 0 auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.screenshot-item.animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--white);
    border: 2px solid transparent;
}

.screenshot-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.screenshot-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    min-height: 200px;
    object-fit: cover;
    object-position: left;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition);
}

.screenshot-wrapper:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.screenshot-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.screenshot-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 25px;
    transition: var(--transition);
}

.screenshot-item:hover .screenshot-label {
    background: var(--primary-yellow);
    color: var(--black);
}

.screenshot-label i {
    font-size: 16px;
    color: var(--primary-yellow);
    transition: var(--transition);
}

.screenshot-item:hover .screenshot-label i {
    color: var(--black);
}

.screenshot-label span {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

/* Efeito especial no primeiro screenshot */
.screenshot-item:first-child .screenshot-wrapper {
    position: relative;
}

.screenshot-item:first-child .screenshot-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-yellow), transparent, var(--primary-yellow));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.screenshot-item:first-child:hover .screenshot-wrapper::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive para Screenshots */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .screenshot-wrapper {
        border-radius: 12px;
    }

    .screenshot-overlay {
        padding: 16px;
    }

    .screenshots-header h3 {
        font-size: 1.6rem;
    }

    .panel-text h3 {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {

    .screenshot-label span {
        font-size: 12px;
    }
}


/* Timeline Layout */
.recursos-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-yellow);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
    cursor: pointer;
    transition: var(--transition);
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 3px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.timeline-marker i {
    font-size: 14px;
    color: var(--primary-yellow);
}

.timeline-item.active .timeline-marker {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

.timeline-item.active .timeline-marker i {
    color: var(--black);
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.timeline-item.active .timeline-content {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.timeline-content p {
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.timeline-item.active .timeline-details {
    max-height: 200px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.detail-item:hover {
    background: var(--primary-yellow);
}

.detail-item i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.detail-item:hover i {
    color: var(--black);
}

/* Tabs Horizontais */
.recursos-tabs-horizontal {
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: var(--light-gray);
    padding: 8px;
    border-radius: 12px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--medium-gray);
    transition: var(--transition);
    flex: 1;
    justify-content: center;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.tab-btn i {
    font-size: 18px;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.panel-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.panel-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-row:hover {
    background: var(--primary-yellow);
    transform: translateX(8px);
}

.feature-row i {
    font-size: 20px;
    color: var(--primary-yellow);
    min-width: 24px;
}

.feature-row:hover i {
    color: var(--black);
}

.feature-row strong {
    display: block;
    font-weight: 600;
    color: var(--black);
}

.feature-row span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 200px;
    height: 200px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed var(--primary-yellow);
}

.visual-placeholder i {
    font-size: 48px;
    color: var(--primary-yellow);
}

.visual-placeholder span {
    font-weight: 600;
    color: var(--medium-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 60px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-marker {
        left: 5px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .tabs-navigation {
        flex-direction: column;
    }

    .panel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-placeholder {
        width: 150px;
        height: 150px;
    }
}

.line-yellow-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.line-yellow {
    width: 16px;
    height: 2px;
    background-color: #ffca00;
}



























/* Monitor grande, com 3D e animações (versão full-fit) */
.hero-monitor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    opacity: 0;
    animation: fadeInRight .8s ease-out .1s forwards;
}

/* Largura maior e bordas suaves */
.monitor-3d {
    width: 100%;
    max-width: 760px;
    background: var(--white);
    border: 1px solid rgba(255, 202, 0, .25);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-10deg) rotateX(2deg);
    transition: transform .5s cubic-bezier(.22, .61, .36, 1), box-shadow .4s ease;
}

.monitor-3d:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(0deg) translateZ(0);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .18);
}

/* Barra superior */
.monitor-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--light-gray);
}

.monitor-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.monitor-dots span:nth-child(1) {
    background: #ff5f56
}

.monitor-dots span:nth-child(2) {
    background: #ffbd2e
}

.monitor-dots span:nth-child(3) {
    background: #27ca3f
}

.monitor-title {
    font-weight: 600;
    color: var(--black);
    font-size: 14px
}

/* Canvas sem padding, overflow oculto, altura generosa */
.monitor-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1916 / 906;
    /* preserva a proporção da sua imagem */
    background: var(--light-gray);
    overflow: hidden;
}

/* Camadas das telas (slides) */
.monitor-screen{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  display: block;
}

/* Ativa a tela */
.monitor-screen.active {
    opacity: 1;
}

/* Força a imagem a ocupar 100% LxA do canvas */
.monitor-screen.render-image,
.monitor-screen.render-image picture,
.monitor-screen.render-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;      /* mostra a tela inteira sem cortar */
  object-position: center;
}

/* Cobrir tudo (preencher 100%) ou conter (mostrar tudo) */
.monitor-screen.image-cover img {
    object-fit: cover;
    /* preenche 100% (pode cortar um pouco) */
    object-position: center;
}

.monitor-screen.image-contain img {
    object-fit: contain;
    /* mostra 100% da imagem (pode sobrar faixas) */
    object-position: center;
}

/* Removido zoom no img para não “estourar” as bordas */
.monitor-3d:hover .monitor-screen.render-image img {
    transform: none;
}

/* HTML interno opcional (quando data-type="html") */
.screen-html {
    width: 94%;
    max-width: 860px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
    margin: 0 auto;
}

/* Destaque no item à esquerda ativo */
.feature-row.is-active {
    background: var(--primary-yellow);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.feature-row.is-active i {
    color: var(--black)
}

@supports not (aspect-ratio: 1 / 1) {
  .monitor-canvas{
    height: calc(100vw * (906 / 1916));
    max-height: 480px;  /* limite opcional em desktops menores */
  }
}

/* Responsivo */
@media (max-width: 1200px) {
    .monitor-3d {
        max-width: 700px;
    }

    .monitor-canvas {
        height: 440px;
    }
}

@media (max-width: 992px) {
    .monitor-3d {
        max-width: 100%;
    }

    .monitor-canvas {
        height: auto;
    }
}

@media (max-width: 600px) {
    .monitor-canvas {
        height: auto;
    }
}