/* ===================================================
   FINAL CTA - PATHS E URGENCY
   =================================================== */

.final-cta .pill-title {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    margin-bottom: 24px;
}

.final-cta .section-title {
    margin-bottom: 50px;
    line-height: 1.2;
}

.two-paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 860px;
}

.path {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.4) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 40px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.path:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.bad-path {
    border-color: rgba(239, 68, 68, 0.15);
}

.bad-path:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.1);
}

.good-path {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.good-path:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
}

.good-path::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.problem-icon-box {
    font-size: 32px;
    width: 64px;
    min-width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    position: relative;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    margin-bottom: 24px;
}

/* Diferenciando as cores dos boxes na seção final */
.bad-path .problem-icon-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

.path:hover .problem-icon-box {
    transform: scale(1.15) rotate(7deg);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(6, 182, 212, 0.2) 100%);
}

.bad-path:hover .problem-icon-box {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.2) 100%);
}

.path h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.path ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.path ul li {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
    position: relative;
    padding-left: 26px;
}

.bad-path ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: bold;
    font-size: 14px;
}

.good-path ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
    font-size: 14px;
}

.final-urgency {
    margin-bottom: 40px;
}

.urgency-badge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #f87171;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.2); }
}

.final-urgency p {
    color: #9ca3af;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

.final-cta .btn-primary {
    margin-top: 20px;
    padding: 22px 48px;
    font-size: 1.1rem;
    font-weight: 700;
}

.final-security {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.fs-icon {
    font-size: 1.2rem;
}