/* section-9-power-levels.css */

.section-power-levels {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfb 0%, #edf3f2 100%);
    position: relative;
    overflow: hidden;
}

.section-power-levels .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0A4D40;
}

.section-power-levels .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.power-levels-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.power-level-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    z-index: 5;
}

.power-level-card.basic {
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
}

.power-level-card.pro {
    transform: perspective(1000px) rotateY(5deg) translateY(-20px);
    border-color: #F18F1C;
}

.power-level-card:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.level-header {
    padding: 30px;
    background: linear-gradient(135deg, #0A4D40 0%, #116e5a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.power-level-card.pro .level-header {
    background: linear-gradient(135deg, #F18F1C 0%, #ffa83e 100%);
}

.level-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.level-svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.level-header h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #FFFFFF;
}

.level-content {
    padding: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-svg {
    width: 24px;
    height: 24px;
}

.feature-circle {
    fill: none;
    stroke: #0A4D40;
    stroke-width: 2;
}

.power-level-card.pro .feature-circle {
    stroke: #F18F1C;
}

.feature-check {
    fill: none;
    stroke: #0A4D40;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.power-level-card.pro .feature-check {
    stroke: #F18F1C;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.level-footer {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
}

.level-label {
    font-size: 18px;
    font-weight: 700;
    color: #0A4D40;
    text-transform: uppercase;
}

.power-level-card.pro .level-label {
    color: #F18F1C;
}

/* Conexão entre os cards */
.power-level-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 10%;
}

.connection-line {
    width: 100%;
    height: 2px;
    background-color: #0A4D40;
    position: relative;
    margin: 10px 0;
}

.connection-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.left-arrow-svg {
    width: 24px;
    height: 24px;
    stroke: #0A4D40;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.connection-text {
    font-size: 12px;
    font-weight: 700;
    color: #0A4D40;
    margin-top: 40px;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
}

/* Efeito "Blueprint" */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.blueprint-line {
    position: absolute;
    background-color: rgba(10, 77, 64, 0.1);
}

.blueprint-dot:nth-child(3) {
    top: 25%;
    left: 25%;
}

.blueprint-dot:nth-child(4) {
    top: 25%;
    left: 75%;
}

.blueprint-dot:nth-child(5) {
    top: 75%;
    left: 25%;
}

.blueprint-dot:nth-child(6) {
    top: 75%;
    left: 75%;
}

/* Animações para os elementos */
@keyframes pulseCard {
    0% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    100% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}

.power-level-card.pro {
    animation: pulseCard 4s infinite ease-in-out;
}

/* Media Queries para Responsividade */
@media (max-width: 1199px) {
    .power-levels-container {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .power-levels-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .power-level-card {
        width: 80%;
        transform: none !important;
    }
    
    .power-level-connection {
        width: 100%;
        height: 50px;
        transform: rotate(90deg);
    }
    
    .connection-text {
        transform: rotate(-90deg);
        padding-right: 50px;
    }
    
    .section-power-levels .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-power-levels {
        padding: 60px 0;
    }
    
    .power-level-card {
        width: 90%;
    }
    
    .section-power-levels .section-title {
        font-size: 28px;
    }
    
    .section-power-levels .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .power-level-card {
        width: 100%;
    }
    
    .level-header h3 {
        font-size: 20px;
    }
    
    .section-power-levels .section-title {
        font-size: 24px;
    }
}, 0.05);
}

.blueprint-line.horizontal {
    height: 1px;
    width: 100%;
    top: 50%;
}

.blueprint-line.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
}

.blueprint-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(10, 77, 64