/********** OiClinic - Landing Page CSS **********/
:root {
    --primary: #13C5DD;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
    --success: #28a745;
    --bs-primary: #13C5DD;
    --bs-primary-rgb: 19, 197, 221;
}

body { font-family: 'Roboto', sans-serif; color: #333; }

/* === BUTTONS === */
.btn { font-weight: 700; transition: .5s; }
.btn:hover { box-shadow: 0 8px 6px -6px #555; }
.btn-primary { background-color: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background-color: #0fa8be; border-color: #0fa8be; color: #fff; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); color: #fff; }
.btn-square { width: 36px; height: 36px; }
.btn-sm-square { width: 28px; height: 28px; }
.btn-lg-square { width: 46px; height: 46px; }
.btn-square, .btn-sm-square, .btn-lg-square { padding-left: 0; padding-right: 0; text-align: center; }

/* === BOOTSTRAP OVERRIDES === */
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

/* === BACK TO TOP === */
.back-to-top {
    position: fixed; display: none;
    right: 30px; bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
    background: var(--primary); border-color: var(--primary); color: #fff;
}

/* === NAVBAR === */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    position: relative; margin-left: 25px;
    padding: 28px 0; font-size: 17px; font-weight: 700;
    color: var(--dark); outline: none; transition: .5s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active { color: var(--primary); }
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute; content: ""; width: 0; height: 4px;
        bottom: 0; left: 50%; background: var(--primary); transition: .5s;
    }
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before { width: 100%; left: 0; }
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link { margin-left: 0; padding: 10px 0; }
    .navbar-access-btns { padding: 12px 0; gap: 8px !important; }
}
.navbar-access-btns .btn { font-size: 0.82rem; padding: 7px 16px; border-radius: 20px; }

/* === HERO === */
.hero-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a6b 55%, var(--secondary) 100%);
    min-height: 88vh; display: flex; align-items: center; padding: 60px 0;
}
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px; padding: 6px 18px;
    font-size: 0.78rem; font-weight: 700; color: #a8d8ff;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-header h1 {
    font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700;
    line-height: 1.2; color: #fff;
}
.hero-header .lead { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 480px; }

/* Browser mockup */
.browser-mockup {
    background: #fff; border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5); overflow: hidden;
}
.browser-bar {
    background: #e8e8e8; padding: 10px 14px;
    display: flex; align-items: center; gap: 6px;
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.browser-bar .dot-r { background: #ff5f57; }
.browser-bar .dot-y { background: #febc2e; }
.browser-bar .dot-g { background: #28c840; }
.browser-url {
    flex: 1; background: #fff; border-radius: 4px;
    padding: 3px 10px; font-size: 11px; color: #777;
    margin-left: 8px; font-family: monospace;
}
.screenshot-placeholder {
    background: linear-gradient(135deg, #EFF5F9 0%, #daedf5 100%);
    min-height: 260px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #8ab3c5; font-size: 13px; text-align: center; padding: 30px 20px; gap: 10px;
}
.screenshot-placeholder i { font-size: 2.5rem; opacity: .5; }
.screenshot-placeholder img { width: 100%; display: block; }

/* === STATS BAR === */
.stats-bar { border-top: 1px solid #dce8f0; border-bottom: 1px solid #dce8f0; }
.stat-item { text-align: center; padding: 22px 16px; }
.stat-item + .stat-item { border-left: 1px solid #dce8f0; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.8rem; color: #777; margin-top: 4px; }

/* === TARGET CARDS (Para Quem É) === */
.target-card { border: 2px solid #dce8f0; border-radius: 14px; padding: 30px; height: 100%; transition: .3s; }
.target-card:hover { border-color: var(--primary); box-shadow: 0 8px 30px rgba(19,197,221,0.12); }
.target-card .tc-icon {
    width: 60px; height: 60px; background: var(--light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--primary); margin-bottom: 18px;
}
.target-card h4 { font-weight: 700; color: var(--dark); }
.target-check { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 0.88rem; color: #444; }
.target-check i { color: var(--primary); }
.coming-badge {
    display: inline-block; background: #fff3cd; color: #856404;
    border-radius: 10px; padding: 2px 10px; font-size: 0.7rem; font-weight: 700; margin-left: 6px;
}

/* === FEATURE CARDS === */
.feature-card {
    background: #fff; border: 1px solid #dce8f0; border-radius: 12px;
    padding: 24px 20px; height: 100%; transition: .3s;
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(19,197,221,0.12);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px; height: 52px; background: var(--light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); margin-bottom: 14px;
}
.feature-card h5 { font-weight: 700; color: var(--dark); font-size: 0.98rem; margin-bottom: 7px; }
.feature-card p { color: #666; font-size: 0.85rem; margin: 0; line-height: 1.5; }
.feature-plan-badge {
    display: inline-block; background: var(--light); color: var(--secondary);
    border-radius: 20px; padding: 2px 10px; font-size: 0.7rem; font-weight: 700; margin-top: 10px;
}

/* === AI SECTION === */
.ai-section { background: linear-gradient(135deg, var(--dark) 0%, #0c2451 100%); }
.ai-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 22px 18px; height: 100%; transition: .3s;
}
.ai-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(19,197,221,0.4); transform: translateY(-3px); }
.ai-card .ai-emoji { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.ai-icon-wrap {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(19,197,221,0.22) 0%, rgba(53,79,142,0.22) 100%);
    border: 1px solid rgba(19,197,221,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #7ee8f5;
    margin-bottom: 13px;
    flex-shrink: 0;
}
.ai-card h6 { color: #fff; font-weight: 700; margin-bottom: 7px; font-size: 0.93rem; }
.ai-card p { color: rgba(255,255,255,0.7); font-size: 0.83rem; margin: 0; line-height: 1.5; }
.ai-tech-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(19,197,221,0.15); border: 1px solid rgba(19,197,221,0.3);
    color: #7ee8f5; border-radius: 20px; padding: 5px 16px;
    font-size: 0.77rem; font-weight: 700;
}

.ai-plan-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.section-sub { color: #666; font-size: 0.95rem; line-height: 1.65; }

/* === GAMES === */
.games-section { background: var(--light); }
.game-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #c9dde8; border-radius: 8px;
    padding: 8px 15px; margin: 4px; font-size: 0.83rem; font-weight: 600;
    color: var(--dark); transition: .2s; cursor: default;
}
.game-chip:hover { border-color: var(--primary); color: var(--secondary); }
.game-chip .game-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.games-montagem-box {
    background: linear-gradient(135deg, #daedf5 0%, #c5e4ef 100%);
    border-radius: 14px; min-height: 280px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--secondary); text-align: center; padding: 30px;
    border: 2px dashed #8ec8d8;
}
.games-montagem-box img { width: 100%; border-radius: 10px; }
.games-montagem-box i { font-size: 3rem; opacity: .45; margin-bottom: 10px; }

/* === VIDEO SECTION === */
.micro-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #fff; border-radius: 10px; padding: 10px 18px;
    font-size: 0.85rem; font-weight: 700;
}

/* === HIGHLIGHT BAR === */
.highlight-bar { background: var(--secondary); }
.hl-item { display: flex; align-items: center; gap: 14px; color: #fff; padding: 14px 0; }
.hl-item i { font-size: 1.8rem; color: #fff; opacity: .85; flex-shrink: 0; }
.hl-item h6 { margin: 0; font-weight: 700; font-size: 0.95rem; color: #fff !important; }
.hl-item p { margin: 0; font-size: 0.79rem; color: rgba(255,255,255,0.8) !important; }

/* === COMPLIANCE === */
.compliance-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light); border: 1px solid #c9dde8;
    border-radius: 30px; padding: 8px 16px;
    font-size: 0.81rem; font-weight: 700; color: var(--dark); margin: 5px;
}
.compliance-chip i { color: var(--primary); font-size: 0.95rem; }

/* === PRICING === */
.pricing-card {
    background: #fff; border: 2px solid #dce8f0; border-radius: 16px;
    padding: 30px 22px; height: 100%; position: relative; transition: .3s;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 50px rgba(19,197,221,0.2);
    transform: scale(1.02);
}
.pricing-card .feat-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; border-radius: 20px;
    padding: 4px 20px; font-size: 0.74rem; font-weight: 700; white-space: nowrap;
}
.price-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 10px; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: var(--dark); line-height: 1; }
.price-amount sup { font-size: 1rem; font-weight: 400; top: -10px; }
.price-amount .price-sub { font-size: 0.88rem; color: #888; font-weight: 400; }
.price-desc { font-size: 0.81rem; color: #888; margin: 8px 0 18px; }
.price-features { list-style: none; padding: 0; margin: 0 0 22px; }
.price-features li {
    display: flex; align-items: center; gap: 9px;
    padding: 6px 0; font-size: 0.86rem; color: #444;
    border-bottom: 1px solid #f5f5f5;
}
.price-features li i.check { color: var(--success); }
.price-features li i.cross { color: #ddd; }
.price-features li.disabled { color: #bbb; }
.pricing-note { font-size: 0.76rem; color: #aaa; text-align: center; margin-top: 8px; }

/* === PATIENT APP === */
.patient-feat { display: flex; align-items: flex-start; gap: 14px; padding: 11px 0; }
.pf-icon {
    width: 42px; height: 42px; background: var(--light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; color: var(--primary); flex-shrink: 0;
}
.patient-feat h6 { font-weight: 700; color: var(--dark); margin-bottom: 2px; font-size: 0.92rem; }
.patient-feat p { color: #666; font-size: 0.8rem; margin: 0; }

/* === FAQ === */
.accordion-button { font-weight: 600; color: var(--dark); font-size: 0.93rem; }
.accordion-button:not(.collapsed) { background: var(--light); color: var(--secondary); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 0.15rem rgba(19,197,221,0.2); }
.faq-category {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary); margin-bottom: 10px; padding-left: 4px;
}

/* === CONTACT === */
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.ci-icon {
    width: 48px; height: 48px; background: var(--light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: var(--primary); flex-shrink: 0;
}
.ci-item h6 { font-weight: 700; color: var(--dark); margin-bottom: 2px; font-size: 0.88rem; }
.ci-item p { color: #666; font-size: 0.85rem; margin: 0; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 30px;
    width: 56px; height: 56px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; z-index: 9999; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: .3s;
}
.whatsapp-float:hover { background: #1ebe5d; color: #fff; transform: scale(1.1); }

/* === SECTION HELPERS === */
.section-tag {
    display: inline-block; font-size: 0.76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 8px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: var(--dark); }

/* === FOOTER === */
.footer-dark { background: var(--dark); }
.footer-link {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.87rem; transition: .2s; display: block; padding: 4px 0;
}
.footer-link:hover { color: var(--primary); }
.footer-access-btn {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 13px 16px;
    color: #fff; text-decoration: none; font-size: 0.87rem; font-weight: 600;
    transition: .3s; margin-bottom: 10px;
}
.footer-access-btn:hover { background: rgba(19,197,221,0.2); border-color: rgba(19,197,221,0.4); color: #fff; }
.footer-access-btn .fab-icon {
    width: 34px; height: 34px; background: var(--primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.footer-access-btn small { display: block; color: rgba(255,255,255,0.5); font-size: 0.73rem; font-weight: 400; }

/* === 3 PILARES === */
.pillar-card {
    background: #fff; border: 2px solid #dce8f0; border-radius: 16px;
    padding: 34px 26px; text-align: center; height: 100%; transition: .3s;
    position: relative;
}
.pillar-card:hover { border-color: var(--primary); box-shadow: 0 10px 35px rgba(19,197,221,0.13); transform: translateY(-4px); }
.pillar-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; background: var(--primary); color: #fff;
    border-radius: 50%; font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.pillar-icon {
    width: 70px; height: 70px; background: var(--light); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem; color: var(--primary); margin: 0 auto 18px;
}
.pillar-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pillar-card p { color: #666; font-size: 0.86rem; margin: 0; line-height: 1.55; }
.pillar-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--primary); opacity: .5; padding-top: 40px;
}
@media (max-width: 991.98px) { .pillar-arrow { display: none; } }

/* === GAMES CAROUSEL === */
.games-carousel-wrap .owl-nav { text-align: center; margin-top: 20px; }
.games-carousel-wrap .owl-nav button {
    width: 40px; height: 40px; border-radius: 50% !important;
    background: var(--primary) !important; color: #fff !important;
    margin: 0 4px; font-size: 1rem !important; transition: .3s;
}
.games-carousel-wrap .owl-nav button:hover { background: var(--secondary) !important; }
.games-carousel-wrap .owl-dots { text-align: center; margin-top: 12px; }
.games-carousel-wrap .owl-dot {
    display: inline-block; width: 8px; height: 8px;
    background: #cde4ed; border-radius: 50%; margin: 0 4px; transition: .3s;
}
.games-carousel-wrap .owl-dot.active { background: var(--primary); width: 22px; border-radius: 4px; }
.game-slide {
    border-radius: 14px; overflow: hidden; background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08); margin: 6px;
    border: 1px solid #dce8f0; transition: .3s;
}
.game-slide:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(19,197,221,0.15); }
.game-slide-img {
    background: linear-gradient(135deg, var(--light) 0%, #c5e4ef 100%);
    height: 155px; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 0.78rem; text-align: center; padding: 10px;
}
.game-slide-img i { font-size: 2.4rem; opacity: .45; display: block; margin-bottom: 6px; }
.game-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.game-slide-body { padding: 14px 14px 16px; }
.game-slide-body h6 { font-weight: 700; color: var(--dark); font-size: 0.88rem; margin-bottom: 4px; }
.game-slide-body .game-focus {
    font-size: 0.74rem; color: var(--primary); font-weight: 600;
    background: var(--light); border-radius: 10px; padding: 2px 10px; display: inline-block;
}

/* === DIFERENCIAIS === */
.diferencial-card {
    background: var(--light); border-radius: 16px; padding: 32px 26px;
    height: 100%; transition: .3s; border: 1px solid #dce8f0;
}
.diferencial-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(19,197,221,0.12); }
.diferencial-card .dif-icon { font-size: 2.4rem; color: var(--primary); margin-bottom: 16px; }
.diferencial-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.diferencial-card p { color: #555; font-size: 0.87rem; margin: 0; line-height: 1.6; }

/* === DASHBOARD PREVIEW === */
.dashboard-preview-wrap {
    max-width: 1000px;
    position: relative;
}
.dashboard-preview-img {
    width: 100%;
    border: 1px solid #dce8f0;
}
.dashboard-placeholder {
    width: 100%; min-height: 420px;
    background: var(--light);
    border: 2px dashed #bcd6e4;
    display: flex; align-items: center; justify-content: center;
}
.db-badge {
    position: absolute;
    background: #fff;
    border: 1px solid #dce8f0;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    white-space: nowrap;
}
.db-badge i { color: var(--primary); }
.db-badge-1 { top: 10%; left: -10px; }
.db-badge-2 { top: 42%; right: -10px; }
.db-badge-3 { bottom: 12%; left: -10px; }
@media (max-width: 767.98px) {
    .db-badge { display: none; }
}
.db-feature-chip {
    background: var(--light);
    border: 1px solid #dce8f0;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
}
.db-feature-chip i { color: var(--primary); }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
    background: var(--dark); color: rgba(255,255,255,.85);
    padding: 14px 0; border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    font-size: .84rem; line-height: 1.5;
}
.cookie-banner a { color: var(--primary); }
.cookie-banner p { margin: 0; }

/* === TESTIMONIAL CAROUSEL (preserved) === */
.testimonial-carousel .owl-dots { margin-top: 15px; display: flex; align-items: center; justify-content: center; }
.testimonial-carousel .owl-dot {
    position: relative; display: inline-block; margin: 0 5px;
    width: 20px; height: 20px; background: var(--light);
    border: 2px solid var(--primary); border-radius: 20px; transition: .5s;
}
.testimonial-carousel .owl-dot.active { width: 40px; height: 40px; background: var(--primary); }
.testimonial-carousel .owl-item img { width: 150px; height: 150px; }

/* === SERVICE ITEM (kept for service.html) === */
.service-item { position: relative; height: 350px; padding: 0 30px; transition: .5s; }
.service-item .service-icon {
    width: 150px; height: 100px; display: flex; align-items: center; justify-content: center;
    background: var(--primary); border-radius: 50%; transform: rotate(-14deg);
}
.service-item .service-icon i { transform: rotate(15deg); }
.service-item a.btn { position: absolute; width: 60px; bottom: -48px; left: 50%; margin-left: -30px; opacity: 0; }
.service-item:hover a.btn { bottom: -24px; opacity: 1; }
