/* service-single.css */
/* Anti-Cliché Protocol: Layered Z-Axis Design */

.service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--black);
}

/* Layer 1: Atmospheric Background */
.service-hero__bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.service-hero__glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: floatOrb 20s infinite ease-in-out alternate;
}

.service-hero__glow-orb--primary {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
}

.service-hero__glow-orb--secondary {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #ff0055 0%, transparent 70%);
    /* Bold contrast */
    animation-delay: -10s;
}

.service-hero__noise-texture {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Container Z-index override */
.service-hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .service-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Layer 2: Typographic Impact */
.service-hero__content-layer {
    position: relative;
}

.service-hero__title-massive {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--white);
    /* Forçar branco para contraste */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-accent {
    color: var(--primary-yellow) !important;
}

.service-hero__subtitle-deep {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 3rem;
    max-width: 90%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border-left: 2px solid var(--primary-yellow);
    width: fit-content;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-item span {
    color: var(--primary-yellow);
    font-size: 1.5rem;
}

/* Layer 3: High-Conversion Form Overlay */
.service-hero__form-layer {
    position: relative;
    z-index: 3;
}

/* Solid Glassmorphism (Anti-Bento/Anti-Soft) */
.lead-card--glass-solid {
    background: rgba(18, 18, 18, 0.85);
    /* Darker, more solid */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Sharp border, no soft shadow */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* Sharp corners, completely anti-bento */
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.lead-card--glass-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), #ff0055);
}

.lead-card__header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.lead-card__header p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    /* Destaque amarelo para contraste */
}

.form-input--solid {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input--solid:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 2px rgba(239, 254, 100, 0.1);
}

.form-input--solid::placeholder {
    color: var(--gray-500);
}

.btn--massive-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 8px;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(253, 195, 26, 0.15);
}

.btn--massive-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(253, 195, 26, 0.4);
    background: #ffd040;
}

.btn--massive-cta span {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn--massive-cta:hover span {
    transform: translateX(10px);
}

.lead-card__security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.lead-card__security-badge span.material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary-yellow);
}

/* Details Section */
.service-details {
    padding: 100px 0;
}

.service-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .service-details__grid {
        grid-template-columns: 1fr;
    }
}

.rich-text p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

.custom-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

/* Abstract Z-Axis Visual */
.abstract-visual-stack {
    position: relative;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.abstract-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abstract-card--back {
    transform: translate(-40%, -60%) translateZ(-100px) rotateY(-10deg);
    background: rgba(50, 50, 50, 0.5);
    border-color: rgba(239, 254, 100, 0.2);
}

.abstract-card--middle {
    transform: translate(-45%, -55%) translateZ(-50px) rotateY(-5deg);
    background: rgba(40, 40, 40, 0.7);
    border-color: rgba(255, 0, 85, 0.2);
}

.abstract-card--front {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0);
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.abstract-visual-stack:hover .abstract-card--back {
    transform: translate(-30%, -70%) translateZ(-150px) rotateY(-15deg);
}

.abstract-visual-stack:hover .abstract-card--middle {
    transform: translate(-40%, -60%) translateZ(-75px) rotateY(-10deg);
}

.abstract-visual-stack:hover .abstract-card--front {
    transform: translate(-60%, -40%) translateZ(50px) rotateY(10deg);
    border-color: var(--primary-yellow);
}

.massive-icon {
    font-size: 5rem;
    color: var(--primary-yellow);
    background: -webkit-linear-gradient(90deg, var(--primary-yellow), #ff0055);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* ========================================
   Immersive Parallax Image Divider
   ======================================== */
.service-immersive {
    height: 50vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.service-immersive__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-immersive__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) saturate(1.2);
    /* Keep it dark and vibey */
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.service-immersive:hover .service-immersive__img {
    transform: scale(1.05);
}

.service-immersive__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.2) 50%, rgba(18, 18, 18, 0.8) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.service-immersive__text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ========================================
   Process Timeline Section
   ======================================== */
.service-process {
    padding: 100px 0;
}

.service-process__timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-process__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-step__marker {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-step__marker {
    border-color: var(--primary-yellow);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(239, 254, 100, 0.15);
}

.timeline-step__content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-step__content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.timeline-step__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.timeline-step:hover .timeline-step__img {
    filter: grayscale(0%);
    opacity: 1;
}

.timeline-step__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-step__content p {
    color: var(--gray-400);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .service-process__timeline::before {
        left: 30px;
    }

    .timeline-step {
        gap: 1.5rem;
        flex-direction: column;
    }

    .timeline-step__marker {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-left: 0;
    }

    .timeline-step:hover .timeline-step__content {
        transform: translateY(-5px);
    }
}