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

:root {
    --primary-dark: #102A43;
    --accent-color: #486581;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #102A43 0%, #486581 100%);
    --gradient-accent: linear-gradient(135deg, #486581 0%, #627D98 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    position: relative;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-stores {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 32px;
}

.store-availability-note {
    max-width: 540px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--primary-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    flex: 1;
    min-height: 0;
    width: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Print a preencher a “tela” inteira do mockup (como um telemóvel real) */
.phone-screen-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.phone-screen-shot.slc-hero-icon {
    object-fit: contain;
    padding: 48px 32px;
    background: var(--bg-light);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

/* Parks Section */
.parks {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #eef3f9 0%, #f4f6f9 42%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.parks::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(72, 101, 129, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(16, 42, 67, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.parks .container {
    position: relative;
    z-index: 1;
}

.parks-header.section-header {
    margin-bottom: 28px;
}

.parks-header.section-header h2 {
    margin-bottom: 14px;
}

.parks-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.parks-lead {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-light);
}

.parks-world-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 22px 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(72, 101, 129, 0.2);
    box-shadow: var(--shadow-sm);
}

.parks-globe {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
}

.parks-world-copy {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0;
}

.parks-spotlight-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 18px;
}

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

.parks-grid-spotlight {
    gap: 22px;
}

.park-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 20px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 1px 3px rgba(16, 42, 67, 0.06);
}

.park-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(16, 42, 67, 0.12);
    border-color: rgba(72, 101, 129, 0.35);
}

.park-card-more {
    background: linear-gradient(145deg, #ffffff 0%, #f0f4fa 100%);
}

.park-card-media {
    width: 112px;
    height: 112px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid #e8ecf1;
}

.park-card-media-fallback {
    background: linear-gradient(180deg, #e8f0fa 0%, #dce6f2 100%);
}

.park-card-media img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.park-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.park-card-meta {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.parks-request {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    max-width: 880px;
    margin: 40px auto 0;
    padding: 26px 28px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.parks-request-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(72, 101, 129, 0.12);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parks-request-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 10px;
}

.parks-request-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.parks-request-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Tools section (extra client features) */
.tools {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tool-icon svg {
    color: var(--white);
}

.tool-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
}

.badge-inline {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-dark);
    background: #e8eef5;
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 6px;
    vertical-align: middle;
}

.tools-note {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Plans comparison */
.plans {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Lifestyle tiers */
.lifestyle {
    padding: 80px 0;
    background: var(--bg-light);
}

.lifestyle-kicker {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.lifestyle-lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 32px;
}

.lifestyle-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.lifestyle-card-featured {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.lifestyle-tier {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.lifestyle-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.lifestyle-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 15px;
}

.lifestyle-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.plan-card.plan-premium {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.plan-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
}

.plan-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.plan-lead {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f2f5;
}

.plan-list li:last-child {
    border-bottom: none;
}

.plan-list.plan-prices {
    margin-bottom: 8px;
}

.plan-list.plan-prices li {
    font-size: 17px;
    font-weight: 500;
}

.plan-list.plan-prices li::before {
    background: var(--accent-color);
}

.plan-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.plans-footnote {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.footer-note {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

/* Premium Section */
.premium {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

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

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.premium-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.premium-text > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.premium-features {
    list-style: none;
    margin-bottom: 32px;
}

.premium-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.premium-features svg {
    flex-shrink: 0;
}

.premium-card-mockup {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.premium-card-mockup svg {
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--bg-light);
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.download-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-button svg {
    flex-shrink: 0;
}

.store-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text {
    font-size: 12px;
    opacity: 0.8;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 16px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 24px 20px;
        background: var(--white);
        box-shadow: var(--shadow-md);
        border-top: 1px solid #e5e7eb;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f2f5;
    }

    .nav-links a.btn-primary {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

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

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

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

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

    .parks-world-strip {
        flex-direction: column;
        text-align: center;
    }

    .parks-globe {
        margin: 0 auto;
    }

    .parks-request {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .premium-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .premium-card-mockup {
        margin: 0 auto;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

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

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .premium-text h2 {
        font-size: 32px;
    }

    .download-content h2 {
        font-size: 32px;
    }
}
