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

:root {
    --primary-green: #7FD135;
    --dark-green: #1a3a1a;
    --light-green: #C8D8B4;
    --bg-green: #E8EDDE;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --footer-bg: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: var(--dark-green);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -1px;
}

.logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.btn-assinar {
    background-color: #a4f751;
    color: #14412a;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
    transition: none;
    pointer-events: none;
    opacity: 1;
}

.header-icons {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: not-allowed;
    transition: none;
    position: relative;
    pointer-events: none;
    opacity: 1;
}


.phone-btn::before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white"><path d="M20 15.5C18.75 15.5 17.55 15.3 16.43 14.93C16.08 14.82 15.69 14.9 15.41 15.17L13.21 17.37C10.38 15.93 8.06 13.62 6.62 10.79L8.82 8.58C9.1 8.31 9.18 7.92 9.07 7.57C8.7 6.45 8.5 5.25 8.5 4C8.5 3.45 8.05 3 7.5 3H4C3.45 3 3 3.45 3 4C3 13.39 10.61 21 20 21C20.55 21 21 20.55 21 20V16.5C21 15.95 20.55 15.5 20 15.5Z"/></svg>') center/contain no-repeat;
}

.menu-btn::before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white"><path d="M3 18H21V16H3V18ZM3 13H21V11H3V13ZM3 6V8H21V6H3Z"/></svg>') center/contain no-repeat;
}

/* Main Content */
.main-content {
    padding-bottom: 60px;
}

/* Hero Section */
.hero-section {
    padding: 20px;
    margin-top: 20px;
}

.hero-card {
    background-color: var(--bg-green);
    border-radius: 32px;
    padding: 32px 24px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.access-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 24px;
}

.access-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon-money {
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><rect x="4" y="10" width="24" height="12" rx="2" stroke="%231a1a1a" stroke-width="2"/><circle cx="16" cy="16" r="3" stroke="%231a1a1a" stroke-width="2"/><path d="M7 13h2M23 13h2M7 19h2M23 19h2" stroke="%231a1a1a" stroke-width="2" stroke-linecap="round"/></svg>') center/contain no-repeat;
}

.access-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.access-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.input-field {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
}

.input-field::placeholder {
    color: #999;
}

.btn-submit {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-submit::after {
    content: '';
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.59 16.59L13.17 12L8.59 7.41L10 6L16 12L10 18L8.59 16.59Z" fill="%231a1a1a"/></svg>') center/contain no-repeat;
}

.btn-submit:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

/* Email Section */
.email-section {
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
    padding: 0 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    margin-bottom: 40px;
    pointer-events: none;
}

.btn-primary::after {
    content: '→';
    font-size: 20px;
}

.illustration {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(127, 209, 53, 0.1) 0%, rgba(127, 209, 53, 0.3) 100%);
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.illustration-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

/* App Section */
.app-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9f3 50%, #eef5e8 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 209, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(50, 224, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.app-logo-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0d2e1c 0%, #14412a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 
                0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.app-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.features-list {
    list-style: none;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #1a1a1a;
}

.feature-item::before {
    content: '✓';
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #7fd135;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-app {
    width: 100%;
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 32px;
}

.app-mockup {
    background-color: var(--bg-green);
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
}

.mockup-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mockup-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s;
}

.badge:hover {
    transform: scale(1.05);
}

.badge-img {
    width: 100%;
    height: auto;
    max-width: 160px;
}

.badge div {
    text-align: left;
}

.badge small {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
}

.badge strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.apple-badge::before {
    content: '';
    font-size: 24px;
}

.google-badge::before {
    content: '';
    font-size: 24px;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 24px 20px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: not-allowed;
    text-align: center;
    pointer-events: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    pointer-events: none;
    cursor: not-allowed;
}

.instagram::after { content: '📷'; }
.facebook::after { content: '📘'; }
.youtube::after { content: '▶️'; }
.twitter::after { content: '🐦'; }
.tiktok::after { content: '🎵'; }
.linkedin::after { content: '💼'; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    pointer-events: none;
    cursor: not-allowed;
}

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

.footer-logo-img {
    height: 36px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* WhatsApp Float Button - REMOVIDO */

/* Responsive */
@media (min-width: 768px) {
    .header-container,
    .main-content,
    .footer {
        max-width: 480px;
        margin: 0 auto;
    }
}
