@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap");

:root {
    --landing-bg: #0b1020;
    --landing-bg-2: #090a15;
    --landing-blue: #0d6efd;
    --landing-purple: #6f42c1;
    --landing-pink: #d63384;
    --landing-text: #f4f7ff;
    --landing-muted: rgba(255, 255, 255, 0.65);
    --landing-border: rgba(255, 255, 255, 0.12);
}

html, body {
    height: 100%;
}

.landing-body {
    margin: 0;
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
}

.landing-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(900px 500px at 15% 12%, rgba(13, 110, 253, 0.35), transparent 60%),
        radial-gradient(700px 450px at 85% 80%, rgba(111, 66, 193, 0.35), transparent 60%),
        radial-gradient(650px 420px at 50% 55%, rgba(214, 51, 132, 0.18), transparent 60%),
        linear-gradient(180deg, var(--landing-bg) 0%, var(--landing-bg-2) 100%);
    filter: saturate(1.05);
    transform: scale(1.02);
}

.landing-content {
    position: relative;
    z-index: 1;
}

.landing-nav {
    background: rgba(6, 10, 22, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--landing-border);
    padding: 8px 0;
    min-height: 180px;
}

.landing-nav .navbar-brand {
    position: relative;
    width: 150px;
    height: 150px;
}

.landing-logo {
    width: 200px;
    height: 195px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.16);
    border: 1px solid rgba(13, 110, 253, 0.35);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--landing-muted);
    font-size: 1.05rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--landing-blue), var(--landing-purple));
    color: #fff;
    border: 0;
    box-shadow: 0 16px 35px rgba(13, 110, 253, 0.3);
}

.btn-glow:hover {
    color: #fff;
    transform: translateY(-1px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--landing-border);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    color: var(--landing-text);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .glass-card {
        background: rgba(12, 16, 32, 0.85);
    }
}

.glass-card .section-muted {
    color: rgba(255, 255, 255, 0.75);
}

.glass-card .glass-card,
.glass-card .stat-card,
.glass-card .badge {
    background: rgba(15, 20, 35, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--landing-text);
}

.glass-card .badge.bg-success,
.glass-card .badge.bg-warning,
.glass-card .badge.bg-info {
    color: #0b1020;
}

.hero-panel .hero-card {
    background: rgba(15, 20, 35, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--landing-text) !important;
}

.section-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.section-muted {
    color: rgba(255, 255, 255, 0.78);
}

.stat-card h3 {
    font-weight: 800;
    margin-bottom: 4px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.2);
    border: 1px solid rgba(13, 110, 253, 0.35);
}

.timeline-step {
    position: relative;
    padding-left: 28px;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.timeline-step::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--landing-blue);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.16);
}

.cta-panel {
    border: 1px solid rgba(111, 66, 193, 0.4);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(111, 66, 193, 0.2));
}

.landing-footer {
    color: var(--landing-muted);
    border-top: 1px solid var(--landing-border);
}

/* WhatsApp CTA button */
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
}

/* Zoho Bookings embed container */
.zoho-booking-embed iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 12px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Botao voltar ao topo */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--landing-border);
    background: rgba(13, 110, 253, 0.25);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: linear-gradient(135deg, var(--landing-blue), var(--landing-purple));
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.35);
    transform: translateY(-2px);
}

/* =============================================
   PRICING PAGE
   ============================================= */

.pricing-card {
    position: relative;
    transition: transform 0.25s ease;
    backdrop-filter: none;
    background: rgba(15, 20, 35, 0.85);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: rgba(25, 135, 84, 0.6) !important;
    border-width: 2px !important;
    box-shadow: 0 0 40px rgba(25, 135, 84, 0.2);
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

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

.pricing-badge-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
    animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(25, 135, 84, 0.7); }
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-top: 4px;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--landing-muted);
    align-self: flex-start;
    margin-top: 8px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-amount-custom {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px 0;
}

.pricing-period {
    font-size: 1rem;
    color: var(--landing-muted);
    font-weight: 400;
}

.pricing-limits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.pricing-limit-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--landing-text);
}

.pricing-limit-item i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--landing-text);
    --bs-table-border-color: var(--landing-border);
    color: var(--landing-text);
    font-size: 0.92rem;
}

.pricing-table thead th {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 2px solid var(--landing-border);
    padding: 16px 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--landing-text);
    white-space: nowrap;
}

.pricing-table tbody td {
    padding: 12px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table-feature {
    min-width: 260px;
}

.pricing-table-plan {
    width: 140px;
    min-width: 100px;
}

.pricing-table-plan-featured {
    background: rgba(25, 135, 84, 0.06) !important;
}

.pricing-table-category td {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--landing-muted);
    padding: 14px 12px !important;
    border-bottom: 1px solid var(--landing-border) !important;
}

.pricing-table tbody tr:not(.pricing-table-category):hover td {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table .fa-check {
    font-size: 1rem;
}

.pricing-table .fa-minus {
    font-size: 0.75rem;
    opacity: 0.4;
}

/* =============================================
   MEDIA QUERIES
   ============================================= */

@media (max-width: 991px) {
    .landing-nav {
        background: rgba(6, 10, 22, 0.92);
    }

    .landing-nav .nav-item .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .pricing-amount {
        font-size: 2.4rem;
    }

    .pricing-table-feature {
        min-width: 180px;
    }

    .pricing-table-plan {
        min-width: 80px;
        width: auto;
    }

    .pricing-table {
        font-size: 0.82rem;
    }

    .pricing-table thead th {
        font-size: 0.82rem;
        padding: 10px 8px;
    }

    .pricing-table tbody td {
        padding: 10px 8px;
    }
}
