/* Estilos das páginas de serviço — complementa styles.css */

/* Header sempre visível nestas páginas (na home ele só aparece no scroll) */
.header {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.svc-page {
    background: #0a1121;
    color: #d7dee8;
}

/* Hero da página de serviço */
.svc-hero {
    padding: 140px 0 70px;
    background: linear-gradient(135deg, #0a1121 0%, #1a2332 100%);
    text-align: center;
}

.svc-breadcrumb {
    font-size: 0.9rem;
    color: #8a99ad;
    margin-bottom: 1.5rem;
}

.svc-breadcrumb a {
    color: #00adb6;
    text-decoration: none;
}

.svc-breadcrumb a:hover {
    text-decoration: underline;
}

.svc-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.svc-hero .svc-subtitle {
    color: #aab6c6;
    font-size: 1.2rem;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.svc-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Seções de conteúdo */
.svc-section {
    padding: 4rem 0;
}

.svc-section:nth-of-type(even) {
    background: #0d1426;
}

.svc-section h2 {
    color: #ffffff;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.svc-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.6rem;
}

.svc-prose {
    max-width: 820px;
}

.svc-prose p {
    color: #c2ccd9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.svc-prose ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.svc-prose ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    color: #c2ccd9;
}

.svc-prose ul li::before {
    content: "\f058"; /* check-circle (Font Awesome) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #00adb6;
    position: absolute;
    left: 0;
    top: 2px;
}

.svc-prose strong {
    color: #e7edf4;
}

/* Grid de cards */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.svc-card {
    background: #111c33;
    border: 1px solid #1e2b45;
    border-radius: 10px;
    padding: 1.8rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: #00adb6;
}

.svc-card .svc-card-icon {
    font-size: 1.8rem;
    color: #00adb6;
    margin-bottom: 0.8rem;
}

.svc-card h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.svc-card p {
    color: #aab6c6;
    font-size: 0.98rem;
    margin: 0;
}

/* FAQ */
.svc-faq-item {
    border-bottom: 1px solid #1e2b45;
    padding: 1.3rem 0;
    max-width: 820px;
}

.svc-faq-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.svc-faq-item p {
    color: #aab6c6;
    margin: 0;
}

/* CTA */
.svc-cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #00adb6 0%, #008a91 100%);
}

.svc-cta h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.svc-cta p {
    color: #e8feff;
    margin-bottom: 1.8rem;
}

.svc-cta .btn-secondary {
    border-color: #ffffff;
}

/* Links internos entre serviços */
.svc-related a {
    color: #00adb6;
    text-decoration: none;
}

.svc-related a:hover {
    text-decoration: underline;
}

/* Carrossel de telas (screenshots do produto) */
.viz-carousel {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
    outline: none;
}

.viz-carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #1e2b45;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.viz-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.viz-slide {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
    position: relative;
    background: #070d18;
}

.viz-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #070d18;
}

.viz-slide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem 1.4rem 1rem;
    background: linear-gradient(to top, rgba(7, 13, 24, 0.92) 0%, rgba(7, 13, 24, 0.55) 60%, rgba(7, 13, 24, 0) 100%);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.viz-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 173, 182, 0.92);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.viz-carousel-btn:hover {
    background: #00adb6;
    transform: translateY(-50%) scale(1.08);
}

.viz-prev { left: 14px; }
.viz-next { right: 14px; }

.viz-carousel-dots {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

.viz-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #2a3a57;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.viz-dot:hover { background: #3d5278; }

.viz-dot.active {
    background: #00adb6;
    transform: scale(1.25);
}

@media (max-width: 600px) {
    .viz-carousel-btn { width: 38px; height: 38px; font-size: 0.95rem; }
    .viz-prev { left: 8px; }
    .viz-next { right: 8px; }
    .viz-slide figcaption { font-size: 0.9rem; padding: 1rem 1rem 0.8rem; }
}

@media (max-width: 768px) {
    .svc-hero h1 { font-size: 2rem; }
    .svc-hero .svc-subtitle { font-size: 1.05rem; }
}

/* Blog */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: #111c33;
    border: 1px solid #1e2b45;
    border-radius: 10px;
    padding: 1.8rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #00adb6;
}

.blog-card h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 0 0 0.6rem;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover { color: #00adb6; }

.blog-card p {
    color: #aab6c6;
    font-size: 0.98rem;
    margin: 0 0 1rem;
}

.blog-card .blog-meta {
    color: #6d7d94;
    font-size: 0.85rem;
}

.blog-article .svc-prose h2 { margin-top: 2rem; }
.blog-article .svc-prose a { color: #00adb6; }
.blog-article .svc-prose a:hover { text-decoration: underline; }
