:root {
    --pupila-red: #D62222;
    --pupila-blue: #12122D;
    --pupila-beige: #ECECE0;
    --pupila-accent: #FF9F1C; /* A nova cor vibrante */
    --pupila-black: #000000;
}

.service-page {
    background-color: #000;
    color: #ECECE0;
}

/* 1. Hero com Fusão de Cores */
.service-hero {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #d622222a 0%, #000 100%);
    position: relative;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(214, 34, 34, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.service-hero h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* 2. Container Split (Descrição) */
.container-split {
    display: flex;
    align-items: center; /* Alinha o texto verticalmente ao centro da imagem */
    justify-content: space-between;
    gap: 80px; /* Espaço generoso entre texto e imagem */
    padding: 50px 7%;
    max-width: 1300px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    max-width: 550px; /* Evita que o texto fique muito largo e difícil de ler */
    text-align: left;
}

.text-content h2 {
    font-size: 2.8rem;
    color: var(--pupila-beige);
    margin-bottom: 25px;
    position: relative;
}

/* Destaque para palavras-chave com a nova cor */
.highlight {
    color: #FF9F1C;
    font-weight: 600;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(236, 236, 224, 0.8);
    margin-bottom: 35px;
}

/* --- LISTA DE BENEFÍCIOS --- */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--pupila-beige);
}

/* Ícones com a nova cor #FF9F1C */
.benefits-list i {
    color: #FF9F1C;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(255, 159, 28, 0.3));
}

/* --- IMAGEM COM MOLDURA DESLOCADA --- */
.image-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-main-img {
    width: 100%;
    max-width: 600px; /* Mantém o tamanho que você gostou */
    border-radius: 20px;
    /* Sombra vermelha característica da Pupila */
    box-shadow: 15px 15px 0px #D62222;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-main-img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0px #FF9F1C; /* A moldura muda para laranja no hover! */
}

.expected-results {
    padding: 80px 7%;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    position: relative;
    aspect-ratio: 16 / 9; /* Mantém o padrão cinematográfico */
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    cursor: help; /* Indica que há algo para ler ao passar o mouse */
    transition: all 0.4s ease;
}

/* Frente do Card */
.card-front {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card-front i {
    font-size: 2.5rem;
    color: #D62222; /* Vermelho Assinatura */
}

.card-front h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* Camada de Informação (Hover) */
.card-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 34, 34, 0.95); /* Vermelho sólido com leve transparência */
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover-info p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Efeito de Ativação */
.impact-card:hover {
    border-color: #D62222;
    transform: scale(1.02);
}

.impact-card:hover .card-hover-info {
    opacity: 1;
    transform: translateY(0);
}

/* 4. CTA Final com Brilho */
.cta-service {
    padding: 40px 7%;
    background: #000 100%;
    text-align: center;
}

.btn-glow {
    animation: cta-button-glow 3s infinite ease-in-out;
}

@keyframes cta-button-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(214, 34, 34, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 30px rgba(214, 34, 34, 0.8); transform: scale(1.05); }
}

/* Responsividade */
@media (max-width: 992px) {
    .container-split { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .service-hero h1 { font-size: 3rem; }
}

.production-process {
    padding: 30px 7%;
    background-color: #000;
    text-align: center;
}

.process-header h2 {
    font-size: 2.5rem;
    color: #ECECE0;
    margin-bottom: 10px;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Ícones e Números */
.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.icon-wrap {
    width: 100px;
    height: 100px;
    background: #12122D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid #D62222;
    position: relative;
    box-shadow: 0 0 15px rgba(214, 34, 34, 0.3);
    /* Animação de Pulso */
    animation: icon-pulse 4s infinite ease-in-out;
}

.icon-wrap i {
    font-size: 2.5rem;
    color: #ECECE0;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #D62222;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Linha Conectora */
.connector-line {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(to right, #D62222, #12122D);
    margin-top: 50px;
    opacity: 0.4;
}

/* Animações */
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(214, 34, 34, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(214, 34, 34, 0.6); }
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .process-flow { flex-direction: column; gap: 50px; }
    .connector-line { display: none; }
}

/* Números das Etapas com a nova cor */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--pupila-accent); /* Mudança para o laranja */
    color: var(--pupila-black); /* Contraste escuro para leitura */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.5);
}

/* Ícone com borda dupla Red + Accent */
.icon-wrap {
    border: 2px solid var(--pupila-red);
    outline: 2px solid var(--pupila-accent);
    outline-offset: 4px;
    background: var(--pupila-blue);
}