/* ============================================================
   SEÇÃO PROMOCIONAL VILATAXI — ESTILOS & ANIMAÇÕES DEDICADAS
   ============================================================ */

/* --- CONTAINER DA SEÇÃO --- */
.vilataxi-promo-section {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

/* --- CARD BARRINHA DE DESTAQUE --- */
.vilataxi-card {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0044cc 100%);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 35px -10px rgba(0, 102, 255, 0.25),
                0 0 50px -15px rgba(0, 102, 255, 0.15);
}

/* Efeito de brilho ambiente de fundo */
.vilataxi-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: ambientPulse 6s ease-in-out infinite alternate;
}

/* Efeito Reflexo Shimmer varrendo o card */
.vilataxi-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-25deg);
    animation: cardShimmer 7s infinite;
}

/* --- FITA DE EXCLUSIVO (RIBBON CORNER) --- */
.exclusive-ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    background: linear-gradient(135deg, #ff0055 0%, #ff5500 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(255, 0, 85, 0.4);
    z-index: 5;
}

/* Badge Alternativo Interno caso a fita de canto não se ajuste ao layout mobile */
.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #ff0055, #ff5500);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    box-shadow: 0 0 12px rgba(255, 0, 85, 0.5);
    animation: badgeGlow 2s infinite alternate;
}

/* --- ESQUERDA: LOGOTIPO COM ANIMAÇÃO --- */
.vilataxi-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    flex-shrink: 0;
}

.vilataxi-logo-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.vilataxi-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* --- CENTRO: INFORMAÇÕES & DESCRIÇÃO --- */
.vilataxi-info {
    z-index: 2;
    flex: 1;
}

.vilataxi-info h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vilataxi-info p {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.5;
    max-width: 520px;
}

/* --- DIREITA: BOTÃO CHAMATIVO E ANIMADO --- */
.vilataxi-action {
    z-index: 2;
    flex-shrink: 0;
}

.btn-vilataxi-download {
    position: relative;
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: btnPulse 2.5s infinite;
}

.btn-vilataxi-download i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-vilataxi-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.7);
    background: linear-gradient(135deg, #1a75ff 0%, #0055ff 100%);
}

.btn-vilataxi-download:hover i {
    transform: translateY(3px);
}

/* Brilho varrendo o botão */
.btn-vilataxi-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

.btn-vilataxi-download:hover::before {
    left: 100%;
}

/* --- KEYFRAMES DE ANIMAÇÃO --- */

/* Flutuação suave do Logótipo */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(2deg);
    }
}

/* Pulsação do Botão */
@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 102, 255, 0.85);
    }
}

/* Pulsação de luz do fundo */
@keyframes ambientPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Brilho da Fita Exclusivo */
@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 8px rgba(255, 0, 85, 0.4);
    }
    100% {
        box-shadow: 0 0 18px rgba(255, 0, 85, 0.9);
    }
}

/* Varredura Shimmer no Card */
@keyframes cardShimmer {
    0% {
        left: -150%;
    }
    20%, 100% {
        left: 150%;
    }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .vilataxi-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px 28px 24px;
        gap: 20px;
    }

    .vilataxi-brand {
        flex-direction: column;
    }

    .vilataxi-info h3 {
        justify-content: center;
    }

    .vilataxi-info p {
        margin: 0 auto;
    }

    .exclusive-ribbon {
        font-size: 9px;
        padding: 4px 30px;
        top: 14px;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .btn-vilataxi-download {
        width: 100%;
        justify-content: center;
    }
}
