/* WP Carrossel Celular Styles */

.wpcci-container {
    position: relative;
    width: 100%;
    background-color: transparent; /* Fundo transparente */
    overflow: hidden;
    padding: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

.wpcci-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tracks Background */
.wpcci-tracks-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    /* Efeito de fade transparente e dinâmico usando mask-image */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.wpcci-track {
    display: flex;
    width: max-content;
    gap: 20px;
}

/* Animações contínuas */
.wpcci-track-top {
    animation: wpcci-scroll-left 80s linear infinite;
}
.wpcci-track-bottom {
    transform: translateX(-50%);
    animation: wpcci-scroll-right 80s linear infinite;
}

.wpcci-track:hover {
    animation-play-state: paused;
}

@keyframes wpcci-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes wpcci-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.wpcci-slide {
    width: 240px;
    height: 300px;
    background: #111;
    overflow: hidden;
    opacity: 0.35;
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    border-radius: 4px;
}
.wpcci-slide:hover {
    opacity: 1;
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.wpcci-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.3s;
}
.wpcci-slide:hover img {
    filter: brightness(1.1);
}

/* Textos da Esquerda */
.wpcci-text-block {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
}
.wpcci-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.wpcci-icon svg {
    color: #E1306C; /* Instagram Color */
}
.wpcci-text-block h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

/* Mockup Celular Real no Centro */
.wpcci-center-mockup {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpcci-phone-real {
    position: relative;
    z-index: 10;
    width: 320px;
    /* Adicionando um drop shadow natural para separar do fundo */
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.7)); 
    transition: transform 0.3s ease;
}
.wpcci-phone-real:hover {
    transform: scale(1.02);
}
.wpcci-phone-real img {
    width: 100%;
    height: auto;
    display: block;
}

/* Botão Direita */
.wpcci-btn-block {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.wpcci-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: 1px solid #D25C25; /* Laranja da imagem */
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 92, 37, 0.1);
}
.wpcci-btn:hover {
    background: rgba(210, 92, 37, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 92, 37, 0.3);
}

/* =========================================================================
   Responsivo
   ========================================================================= */

@media (max-width: 1200px) {
    .wpcci-text-block h2 { font-size: 42px; }
    .wpcci-phone-real { width: 280px; }
    .wpcci-slide { width: 200px; height: 250px; }
}

@media (max-width: 991px) {
    .wpcci-container { padding: 140px 0 120px; }
    
    .wpcci-text-block {
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
    }
    .wpcci-icon { justify-content: center; }
    
    .wpcci-btn-block {
        top: auto;
        bottom: 50px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .wpcci-container { 
        min-height: 800px; 
        padding: 120px 0 100px;
    }
    .wpcci-text-block h2 { font-size: 34px; }
    .wpcci-phone-real { width: 240px; }
    .wpcci-slide { width: 160px; height: 200px; }
}
