/**
 * VPN Features CSS
 * Estilos para la sección de características de VPN
 */

/* Sección principal de características de VPN */
.vpn-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vpn-features .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.vpn-features .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.vpn-features .section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Tarjetas de características */
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Ícono circular */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #0060fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 96, 254, 0.3);
}

.feature-icon-circle i {
    font-size: 32px;
    color: #fff;
}

/* Título y descripción */
.feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: #0060fe;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Efecto decorativo */
.feature-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 96, 254, 0.1);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Sección de beneficios de VPN */
.vpn-benefits {
    padding: 80px 0;
    background-color: #fff;
}

.vpn-benefits .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.vpn-benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

/* Estilos para la sección What is a VPN */
.what-is-vpn {
    padding: 80px 0;
    background-color: #fff;
}

.what-is-vpn h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.what-is-vpn h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.what-is-vpn p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vpn-benefit {
    margin-bottom: 25px;
}

.vpn-benefit h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.vpn-benefit h4 i {
    margin-right: 10px;
    color: #0060fe;
}

.vpn-benefit p {
    padding-left: 32px;
}

.device-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.device-icon {
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.device-icon:hover {
    transform: translateY(-5px);
}

.device-icon i {
    color: #0060fe;
    margin-bottom: 10px;
}

.device-icon p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Estilos para las tarjetas de beneficios */
.benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.benefit-card:hover h4 {
    color: #0060fe;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .vpn-features,
    .vpn-benefits,
    .what-is-vpn {
        padding: 60px 0;
    }
    
    .vpn-features .section-title h2,
    .vpn-benefits .section-title h2 {
        font-size: 32px;
    }
    
    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-circle i {
        font-size: 28px;
    }
     
    /* Ajustes para la sección 'What is a VPN' */
    .what-is-vpn h2 {
        font-size: 32px;
    }
    
    .what-is-vpn h3 {
        font-size: 24px;
    }
    
    .vpn-benefit h4 {
        font-size: 20px;
    }
    
    .device-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .device-icon {
        margin: 0 15px 20px;
    }
}

@media (max-width: 768px) {
    .vpn-features,
    .vpn-benefits {
        padding: 50px 0;
    }
    
    .vpn-features .section-title h2,
    .vpn-benefits .section-title h2 {
        font-size: 28px;
    }
    
    .vpn-features .section-title p,
    .vpn-benefits .section-title p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h4 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    .feature-icon-circle {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .feature-icon-circle i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .vpn-features,
    .vpn-benefits {
        padding: 40px 0;
    }
    
    .vpn-features .section-title h2,
    .vpn-benefits .section-title h2 {
        font-size: 24px;
    }
    
    .vpn-features .section-title p,
    .vpn-benefits .section-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .feature-card,
    .benefit-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .feature-card h4,
    .benefit-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p,
    .benefit-card p {
        font-size: 14px;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-circle i {
        font-size: 24px;
    }
    
    /* Ajustes adicionales para dispositivos muy pequeños */
    .what-is-vpn h2 {
        font-size: 24px;
    }
    
    .what-is-vpn h3 {
        font-size: 20px;
    }
    
    .what-is-vpn p {
        font-size: 14px;
    }
    
    .vpn-benefit h4 {
        font-size: 16px;
    }
    
    .device-icon {
        margin: 0 10px 15px;
    }
    
    .device-icon i {
        font-size: 24px !important;
    }
    
    .device-icon p {
        font-size: 12px;
        margin-top: 5px;
    }
}